c++ switch case in bool code example
Example 1: how to make a switch case statement in c++
using namespace std;
int main(){
int num = 5;
switch(num + 2) {
case 1:
cout << "Case1: Value is: " << num << endl;
case 2:
cout << "Case2: Value is: " << num << endl;
case 3:
cout << "Case3: Value is: " << num << endl;
default:
cout << "Default: Value is: " << num << endl;
}
return 0;
}
Example 2: switch case sinax c++
switch (<espressione>)
{
case <valore costante 1>:
break;
case <valore costante 2>:
break;
...
case <valore costante N>:
break;
default:
break;
}