返回列表 發帖

三數中找出最大的數

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     re:
  7.     int  a,b,c,d,e;
  8.     cout<<"請依序輸入三個數: ";
  9.     cin>>a>>b>>c;
  10.     d=a>b?a:b;
  11.     e=d>c?d:c;
  12.     cout<<"三數中最大的數為: "<<e<<endl<<endl;
  13.     goto re;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y,z,tmp;
  7.     cout<<"請輸入三個數: ";
  8.     cin>>x>>y>>z;
  9.     tmp =(x>y)?x:y;
  10.     tmp =(tmp>z)?tmp:z;
  11.     cout<<"三數中最大的數為: "<<tmp<<endl;
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

本帖最後由 陳潔歆 於 2018-11-17 10:43 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int w,x,y,z;
  8.     cout<<"請任意輸入三個數: ";
  9.     cin>>w>>x>>y;
  10.     z = (w>x)?w:x;
  11.     z = (z>y)?z:y;
  12.     cout<<"三數中最大的數為: "<<z<<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.     re:
  7.     int x,y,z,tmp;
  8.     cout<<"請輸入三個數:";
  9.     cin>>x>>y>>z;
  10.     tmp = (x>y)?x:z;
  11.     tmp = (tmp>z)?tmp:z;
  12.     cout<<"三數中最大的數為:"<<tmp<<endl;
  13.    
  14.    
  15.    goto re;
  16. system("pause");
  17. return 0;   
  18.    
  19. }
複製代碼

TOP

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

TOP

返回列表