switchステートメントがあり、値が1つの値または別の値であるときに特定のコードを実行したい場合、どのように実行しますか?次のコードは常にデフォルトの場合になります。
#include <iostream>
using namespace std;
int main()
{
int x = 5;
switch(x)
{
case 5 || 2:
cout << "here I am" << endl;
break;
default:
cout << "no go" << endl;
}
return 0;
}