返回列表 發帖

三數中找出最大的數

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

TOP

本帖最後由 謝易錚 於 2016-5-30 10:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a,b,c,d,e;
  7.     re:
  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.     float a,b,c,d,e;
  7.     re:
  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

本帖最後由 林禹彤 於 2016-5-30 10:08 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     float a,b,c,d,e;
  8.     cout<<"請輸入3數: ";
  9.     cin>>a>>b>>c;
  10.     d=a>b?a:b;
  11.     e=d>c?d:c;
  12.     cout<<"最大值為: "<<e<<endl<<endl;
  13.      
  14.    
  15.     goto re;
  16.    
  17.    
  18.    
  19.     system ("pause");
  20.     return 0;
  21. }
複製代碼

TOP

本帖最後由 邱士杰 於 2016-5-30 10:13 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. float a,b,c,d,e;
  7. re:
  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.     float 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.   float a,b,c,d,e;
  7.   re:
  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.     float a, b, c, d, e;
  7.     re:
  8.     cout<<"請輸入3個數"<<endl;
  9.     cin>>a>>b>>c;
  10.     d=(a>b)?a:b;
  11.     e=(d>c)?d:c;
  12.     cout<<"3數中最大數為 "<<e<<endl<<endl;
  13.     goto re;         
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

本帖最後由 劉得榮 於 2016-5-30 10:11 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a,b,c,d,e;
  7.     re:
  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.     float a,b,c,d,e;
  7.     re:
  8.     cout<<"請依序輸入3個數 ";
  9.     cin>>a>>b>>c;
  10.     d=a>b?a:b;
  11.     e=d>c?d:c;
  12.     cout<<"三數中最大的數為:"<<e<<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.     float a,b,c,d,e;
  7.     re:
  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.     float a,b,c,d,e;
  7.     re:
  8.     cout<<"請依序輸入三個數字: ";
  9.     cin>>a>>b>>c;
  10.     d=a>b?a:b;
  11.     e=d>c?d:c;
  12.     cout<<"三數中最大的數為:"<<e<<endl;
  13.     goto re;
  14.     system("pause");
  15.     return 0;
  16. }
  17.      
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    float a,b,c,d,e;
  7.    re:
  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

返回列表