返回列表 發帖

三數中找出最大的數

本帖最後由 鄭繼威 於 2023-2-17 20:58 編輯


?:是三元運算子(if的縮寫而已,一樣是判斷式不用想太多)
?左邊是條件式,成立就是:左邊不然就右邊

比對一下
  1. d=a>b?a:b;

  2. if(a>b){
  3.         d=a;
  4. }
  5. else{
  6.         d=b;
  7. }
複製代碼
if-else
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     re:
  7.     //單純的宣告輸入輸出
  8.     int  a,b,c;
  9.     cout<<"請依序輸入三個數: ";
  10.     cin>>a>>b>>c;

  11.     int e;
  12.     //a跟b比->存e
  13.     if(a>b){
  14.             e=a;
  15.         }
  16.         else{
  17.                 e=b;
  18.         }

  19.     int ans;
  20.     //e跟c比->存ans
  21.         if(e>c){
  22.                 ans=e;
  23.         }
  24.         else{
  25.                 ans=c;
  26.         }
  27. //    e=a>b?a:b;        //存要嘛a要嘛b
  28. //    ans=e>c?e:c;        //存要嘛d要嘛c
  29.     cout<<"三數中最大的數為: "<<e<<endl<<endl;
  30.     goto re;
  31.     system("pause");
  32.     return 0;   
  33. }
複製代碼
三元運算子
  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

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Attention Seeker </3

TOP

此帖僅作者可見

TOP

返回列表