Answers for "switch case sinax c++"

C++
0

switch case sinax c++

switch (<espressione>)
{
case <valore costante 1>:
// istruzioni
break;


case <valore costante 2>:
// istruzioni
break;
...
case <valore costante N>:
// istruzioni
break;
default:
// istruzioni
break;
}
Posted by: Guest on March-24-2020

Browse Popular Code Answers by Language