<p><html></p> <pre><code><strong>Hey steemit and steemians.</strong></code></pre> <p><strong>another c++ program, not one this two programs.</strong></p> <p><img src="https://lh3.googleusercontent.com/3vGlLyKkKC46G1qqiqyKf0jeOyUtiZk5NxOxeuRJOfP4aZzCob9kabZX252mUmVAHA=w300" width="300" height="300"/></p> <h2>Lets get started</h2> <h1>Continue statement program.</h1> <h1>Program Body:</h1> <p># include <iostream></p> <p>using namespace std;</p> <p>void wolf();</p> <p>int main(){</p> <p>int a =1;</p> <p>while (a <=5){</p> <p>a ++;</p> <p>if(a ==3){</p> <p> continue;</p> <p> a ++;</p> <p>}</p> <p>cout<<a <<endl;</p> <p>}</p> <p>wolf();</p> <p>}</p> <p>void wolf(){</p> <p>int x [2][2]{{</p> <p>90,25</p> <p>},{</p> <p>10,5</p> <p>}</p> <p>};</p> <p>cout <<x[0][0]<<endl;</p> <p>cout <<x[1][1]<<endl;</p> <p>}</p> <h1>School roll number program:</h1> <h1>Program Body</h1> <p>#include <iostream></p> <p>using namespace std;</p> <p>void display();</p> <p>int main(){</p> <p> cout<<"welcome to this G.H.S no#3 school"<<endl;</p> <p> cout<<"press 1 to go to class 9th blue"<<endl;</p> <p> cout<<"press 2 to get into class 9th pink"<<endl;</p> <p> int a,c,e,d;</p> <p> cin>>a;</p> <p> switch (a){</p> <p>case 1:{</p> <p> cout<<"you entered in 9th blue class"<<endl;</p> <p> int b[2][2]{</p> <p> {</p> <p> 11,30</p> <p> },</p> <p> {</p> <p> 85,97</p> <p> }</p> <p> };</p> <p> cout<<"enter the roll no of students there are only 2 of them"<<endl;</p> <p> cin>>c;</p> <p> if(c==1){</p> <p> cout<<b[0][0]<<" "<<b[0][1]<<endl;</p> <p> }else if(c==2){</p> <p> cout<<b[1][0]<<" "<<b[1][1]<<endl;</p> <p><br></p> <p> }break;}</p> <p> case 2:{</p> <p> int d;</p> <p> cout<<"you entered in 9th pink class"<<endl;</p> <p> int e[2][2]={</p> <p> {</p> <p> 100,99</p> <p> },</p> <p> {</p> <p> 23,01</p> <p> }</p> <p> };</p> <p> cout<<"enter the roll no of students there are only 2 of them"<<endl;</p> <p> cin>>d;</p> <p> if(d==1){</p> <p> cout<<e[0][0]<<" "<<e[0][1]<<endl;</p> <p> }else if(d==2){</p> <p> cout<<e[1][0]<<" "<<e[1][1]<<endl;</p> <p> }</p> <p> }</p> <p> }</p> <p>display();</p> <p>}</p> <p>void display (){</p> <p> cout<<"visit new places.there are ten of them"<<endl;</p> <p> int f=10;</p> <p> cout<<f<<endl;</p> <p>}</p> <blockquote><strong>Two programs for today try them out in your compilers and share your reviews and thoughts.</strong></blockquote> <blockquote><strong>THANKS:</strong></blockquote> <p><br></p> </html>