C++ switch(स्विच)
हेलो स्टूडेंट्स आज मै आपको c++ में स्विच स्टेटमेंट के बारे में बताता हूँ | जब हमको कोई मल्टीप्ल कंडीशंस को एक्सेक्यूटे कराना हो तो हम स्विच स्टेटमेंट का यूज़ करते है |
The C++ switch statement executes one statement from multiple
conditions. It is like if-else-if ladder statement in C++.
switch(expression)
{
case value1:
//code to be executed;
break;
case value2:
//code to be executed;
break;
......
default:
//code to be executed if all cases are not matched;
break;
}
Figure No:1 |
C++ Switch Example(स्विच का उदाहरण )
#include <iostream>
using namespace std;
int main ()
{
int num;
cout<<"Enter a number to check grade:";
cin>>num;
switch (num)
//( स्विच के साथ एक्सप्रेशन लिखना होता है)
यहाँ पर num एक वेरिएबल है |
{
case 10: cout<<"It is 10"; break;
case 20: cout<<"It is 20"; break;
case 30: cout<<"It is 30"; break;
default: cout<<"Not 10, 20 or 30"; break;
}
}
Output:
Enter a number:
10
It is 10
Output:
Comments
Post a Comment