返回列表 發帖

三數中找出最大的數

本帖最後由 tonyh 於 2016-5-21 10:56 編輯

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

TOP

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

TOP

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

TOP

返回列表