Board logo

標題: 三數中找出最大的數 [打印本頁]

作者: 葉桔良    時間: 2022-10-29 00:23     標題: 三數中找出最大的數

本帖最後由 葉桔良 於 2022-10-29 20:59 編輯

  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.    
  11.     d=a>b?a:b;
  12.     e=d>c?d:c;
  13.    
  14.     cout<<"三數中最大的數為"<<e<<endl<<endl;
  15.    
  16.     goto re;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 葉桔良    時間: 2022-10-29 00:23

  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. }
複製代碼

作者: 陳昱州    時間: 2022-10-29 20:54

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    re:
    int a, b, c;
    cout<<"Please enter three numbers: ";
    cin>>a>>b>>c;
    if (a>b && a>c )
        {
            cout<<a<<"is the biggest"<<endl;
        }
    else if (b>a && b>c )
        {
            cout<<b<<"is the biggest"<<endl;
        }
    else if (c>a && c>b )
        {
            cout<<c<<"is the biggest"<<endl;
        }
  
    goto re;
    system("pause");
    return 0;
}
作者: 博勛    時間: 2022-10-29 21:01

  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. }
複製代碼

作者: 張晏齊    時間: 2022-10-29 21:01

  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.    
  11.     d=a>b?a:b;
  12.     e=d>c?d:c;
  13.    
  14.     cout<<"三數中最大的數為"<<e<<endl<<endl;
  15.    
  16.     goto re;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 林哲弘    時間: 2022-11-5 19:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int a, b, c;
  8.     cout<<"Please enter three numbers: ";
  9.     cin>>a>>b>>c;
  10.     if (a>b && a>c )
  11.         {
  12.             cout<<a<<"is the biggest"<<endl;
  13.         }
  14.     else if (b>a && b>c )
  15.         {
  16.             cout<<b<<"is the biggest"<<endl;
  17.         }
  18.     else if (c>a && c>b )
  19.         {
  20.             cout<<c<<"is the biggest"<<endl;
  21.         }
  22.   
  23.     goto re;
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

作者: 黃兆駿    時間: 2022-11-5 19:18

  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.    
  11.     d=a>b?a:b;
  12.     e=d>c?d:c;
  13.    
  14.     cout<<"三數中最大的數為"<<e<<endl<<endl;
  15.    
  16.     goto re;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 歐應丞    時間: 2022-11-5 19:29

  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>>f;
  10.    
  11.     d=a>b?a:b;
  12.     e=d>c?d:c;
  13.     g=e>f?e:f;
  14.    
  15.     cout<<"四數中最大的數為"<<g<<endl<<endl;
  16.    
  17.     goto re;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 葉晉維    時間: 2022-11-5 19:29

  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>>f;
  10.    
  11.     e=d>c?d:c;
  12.     g=e>g?e:g;
  13.    
  14.     cout<<"四數中最大的數為"<<e<<endl<<endl;
  15.    
  16.     goto re;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2