返回列表 發帖

[隨堂測驗] 四數中找出最大的數

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. re:
  7.     int w,x,y,z;
  8.     cout<<"請輸入4個數字:";
  9.     cin>>w>>x>>y>>z;
  10.     if(w>x&&w>y&&w>z)
  11.         cout<<"4個數中最大的數為"<<w<<endl;
  12.     else if(x>w&&x>y&&x>z)
  13.         cout<<"4個數中最大的數為"<<x<<endl;
  14.     else if(y>w&&y>x&&y>z)
  15.         cout<<"4個數中最大的數為"<<y<<endl;
  16.     else if(z>w&&z>y&&z>x)
  17.         cout<<"4個數中最大的數為"<<z<<endl;
  18.     else
  19.         cout<<"數字重複!"<<endl;
  20.     cout<<endl;
  21.     goto re;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int w,x,y,z;
  7.     cout<<"請輸入四個數字:";
  8.     cin>>w;
  9.     cin>>x;
  10.     cin>>y;
  11.     cin>>z;

  12.     if(w>x && w>y && w>z){
  13.         cout<<w<<"最大";
  14.     }
  15.     else if(x>w && x>y && x>z){
  16.         cout<<x<<"最大";
  17.     }
  18.     else if(y>w && y>x && y>z){
  19.         cout<<y<<"最大";
  20.     }
  21.     else if(z>w && z>y && z>x){
  22.         cout<<z<<"最大";
  23.     }




  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5. re:
  6.     int a,b,c,d,e,f,g;
  7.     cout<<"請依序輸入四個數字";
  8.     cin>>a>>b>>c>>d;
  9.     e=a>b?a:b;
  10.     f=e>c?e:c;
  11.     g=f>d?f:d;


  12.     cout<<"四個數字中最大的是"<<g<<endl;
  13. cout<<endl;

  14. goto re;
  15. system("pause");
  16. return 0;

  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     re:
  6.     int a,b,c,d;
  7.     cout<<"請依序輸入四個數:"<<endl;
  8.     cin>>a>>b>>c>>d;
  9.     if(a>b&&a>c&&a>d)
  10.         cout<<"四數中最大的數為: "<<a<<endl;
  11.     else if(b>a&&b>c&&b>d)
  12.         cout<<"四數中最大的數為: "<<b<<endl;
  13.     else if(c>a&&c>b&&c>d)
  14.         cout<<"四數中最大的數為: "<<c<<endl;
  15.     else if(d>a&&d>b&&d>c)
  16.         cout<<"四數中最大的數為: "<<c<<endl;
  17.     else
  18.         cout<<"數字重複!"<<endl;
  19.     goto re;

  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a, b, c, d, e, f, g;
  8.     cout<<"請依序輸入四個數: ";
  9.     cin>>a>>b>>c>>d;
  10.     e=a>b?a:b;
  11.     f=b>c?b:c;
  12.     g=c>d?c:d;
  13.     cout<<"四數中最大的數為: "<<g<<endl;
  14.     cout<<endl;
  15.     goto re;
  16. system("pause");
  17. return 0;
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.    re:
  6.    int w,x,y,z ,a,b,c;
  7.    cout<<"請依序輸入四個整數"<<endl;
  8.    cin>>w>>x>>y>>z;
  9.    a=w>x?w:x;
  10.    b=a>y?a:y;
  11.    c=b>z?b:z;

  12.    cout<<"四數中最大的是"<<c<<endl;
  13. goto re;

  14. system("pause");
  15. return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a, b, c, d, e, f, g;
  7.     re:
  8.     cout<<"請任意輸入四個數";
  9.     cin>>a>>b>>c>>d;
  10.     e=a>b?a:b;
  11.     f=c>e?c:e;
  12.     g=d>f?d:f;

  13.     cout<<"四數中最大的是"<<g<<endl;

  14.     goto re;
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. main()
  5. {
  6.         re:
  7.         int a,b,c,d;
  8.         cout<<"請輸入任意四個數字"<<endl;
  9.         cin>>a>>b>>c>>d;
  10.         if(a>b && a>c && a>d)
  11.                 cout<<"四個數中最大的是"<<a<<endl;
  12.         else if(b>a && b>c && b>d)
  13.                 cout<<"四個數中最大的是"<<b<<endl;
  14.         else if(c>a && c>b && c>d)
  15.                 cout<<"四個數中最大的是"<<c<<endl;
  16.         else if(d>a && d>b && d>c)
  17.                 cout<<"四個數中最大的是"<<d<<endl;
  18.         else
  19.                 cout<<"數字重複!"<<endl;
  20.        
  21.         cout<<endl;
  22.        
  23.         goto re;       
  24.         system("pause");
  25.         return 0;
  26. }
  27.        
  28.        
  29.        
複製代碼

TOP

返回列表