switch c 2b 2b

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

showing results for - "switch c 2b 2b"
Laura
08 May 2020
1switch(expression) {
2  case x:
3    // code block
4    break;
5  case y:
6    // code block
7    break;
8  default:
9    // code block
10}
Jorge
27 Jul 2016
1switch (n)
2{
3    case 1: // code to be executed if n = 1;
4        break;
5    case 2: // code to be executed if n = 2;
6        break;
7    default: // code to be executed if n doesn't match any cases
8}
Enrico
10 Mar 2020
1switch(a) {
2  case -1:
3    std::cout << "a == -1" << std::endl;
4  break;
5
6  case 0:
7    std::cout << "a == 0" << std::endl;
8  break;
9
10  default:
11    std::cout << "a is something else" << std::endl;
12}
Justin
28 Mar 2020
1switch(expression) {
2   case 1:
3      //equivalent to if(expression == 1){//do someting...}
4      //do something...
5      break; 
6    //if case 1 is true the rest of the statments arn't 
7    //evaluated because of the break
8   case 45:
9      //equivalent to else if(expression == 45){//do someting...}
10      //do something...
11      break;
12    
13   // you can have any number of case statements and default has to be last
14   default :
15      // equivalent to else{//do someting...}
16      //do something...
17}
18
19switch(expression) {
20   case 1:
21      //equivalent to if(expression == 1){//do someting...}
22      //do something...
23   case 45:
24      //equivalent to if(expression == 45){//do someting...}
25      //do something...
26   default :
27      //always runs if there are no breaks in any of the cases
28      //do something...
29}
30
31//modification of answer by Homeless Hoopoe
Leandro
29 Feb 2016
1switch(expression) {
2   case constant-expression  :
3      statement(s);
4      break; //optional
5   case constant-expression  :
6      statement(s);
7      break; //optional
8  
9   // you can have any number of case statements.
10   default : //Optional
11      statement(s);
12}
13
Santiago
28 May 2020
1#include<iostream>
2using namespace std; 
3int main(){
4	switch(<espressione>){
5		case <costante x>:
6			// Istruzioni
7			break;
8		case <costante y>:
9			// Istruzioni
10			break;
11		case <costante z>:
12			// Istruzioni
13			break;
14
15		............
16
17		default:
18			// Istruzioni
19			break;
20	}
21}
22
similar questions
queries leading to this page
switch c 2b 2b