How does one accept more than one value for a single case in C++? I know you can make a range of values for one case (e.g. case 1..2) in some other languages, but it doesn't seem to be working in C++ on Xcode.
int main() {
    int input;
    cin >> input;
    switch (input) {
        case 1:
            cout << "option 1 \n";
            break;
        case 2..3: //This is where the error occurs
            cout << "option 2 and 3 \n";
            break;
        
        default:
            break;
    }
    return 0;
}
The program shows an error saying "Invalid suffix '.3' on floating constant" where the range is.
 
     
     
     
    