Board logo

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

作者: 陳品肇    時間: 2018-11-15 21:59     標題: 三數中找出最大的數

[attach]5283[/attach]
  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. }
複製代碼

作者: 田宇任    時間: 2018-11-17 10:37

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

作者: 陳潔歆    時間: 2018-11-17 10:39

本帖最後由 陳潔歆 於 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. }
複製代碼

作者: 蘇昱全    時間: 2018-11-17 10:44

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

作者: 湯郡一    時間: 2018-11-17 10:46

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

作者: 楊侍穎    時間: 2018-11-19 18:06

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

作者: 楊侍穎    時間: 2018-11-19 19:24

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

作者: 鄭元富    時間: 2018-11-20 18:34

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





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