switch case sinax c 2b 2b

Solutions on MaxInterview for switch case sinax c 2b 2b by the best coders in the world

showing results for - "switch case sinax c 2b 2b"
Martina
04 Nov 2020
1switch (<espressione>)
2{
3case <valore costante 1>:
4// istruzioni
5break;
6
7
8case <valore costante 2>:
9// istruzioni
10break;
11...
12case <valore costante N>:
13// istruzioni
14break;
15default:
16// istruzioni
17break;
18}