اكتب برنامج باستخدام to goٌ يطلب من المستخدم رقمين ضمن شروط
- برمجة
- برمجة سي بلس بلس
- 2021-04-14
- salsabeelalhams99111801528
الأجوبة
#include<iostream>
using namespace std;
int main(){
int n1,n2,m;
cout<<"enter tow numbers";
cin>>n1>>n2;
do{
choice:
cout<<"press(1)print all number"<<endl;
cout<<"press(2)print even number"<<endl;
cout<<"press(3)print odd number"<<endl;
cout<<"press(0) to exit"<<endl;
cin>>m;
if(m==1)goto all;
elseif(m==2)goto even;
elseif(m==3)goto odd;
elseif(m==0)goto exit;
cout<<"pad choice try agine"<<endl;
goto choice;
all:for(int i=n1;i<=n2;i++)
cout<<i<<" ";
goto choice;
even:for(int i=n1;i<=n2;i++)
if(i%2==0)
cout<<i<<" ";
goto choice;
odd:
for(int i=n1;i<=n2;i++)
if(i%2!=0)
cout<<i<<" ";
goto choice;
}while(m!=0);
exit:
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال