返回列表 發帖

[隨堂測驗] 二數比大小

讓使用者輸入兩個數, 電腦回應這兩個數的大小關係, 包括兩數相等的情況.

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int a, b,;
  6.    cout<<"請輸入第一個數"<<endl;
  7.    cin>>a;
  8.    cout<<"請輸入第二個數"<<endl;
  9.    cin>>b;
  10.   
  11.    if(a>b)
  12.       {
  13.             cout<<a<<">"<<b<<endl;
  14.       }
  15.    else if(b>a)
  16.       {
  17.             cout<<b<<">"<<a<<endl;
  18.       }
  19.    else
  20.       {
  21.              cout<<b<<"="<<a<<endl;
  22.       }     
  23.    system("pause");
  24.    return 0;   
  25. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int a, b, c;
  6.    cout<<"請輸入第一個數"<<endl;
  7.    cin>>a;
  8.    cout<<"請輸入第二個數"<<endl;
  9.    cin>>b;
  10.    
  11.    if(a>b)
  12.       {
  13.             cout<<a<<">"<<b<<endl;
  14.             }
  15.             else if(b>a)
  16.                  {
  17.                   cout<<b<<">"<<a<<endl;
  18.                  }
  19.             else if(a=b)
  20.             {
  21.             cout<<a<<"="<<b<<endl;
  22.       }
  23.    system("pause");
  24.    return 0;   
  25. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    int z;
  7.   
  8.    
  9.    cout<<"請輸入兩個數字電腦會幫您排列數字的大小"<<endl;
  10.    cout<<"請輸入第一個數"<<endl;
  11.    cin>>x;
  12.    cout<<"請輸入第二個數"<<endl;
  13.    cin>>z;
  14.    
  15.    if(x>z)
  16.       {
  17.             cout<<x<<">"<<z<<endl;
  18.       }
  19.    else if(x>z)
  20.       {
  21.             cout<<x<<">"<<z<<endl;
  22.       }
  23.    else if(z>x)
  24.       {
  25.              cout<<z<<">"<<x<<endl;
  26.       }
  27.    else if(z=x)
  28.       {
  29.              cout<<z<<"="<<x<<endl;
  30.       }  
  31.    
  32.    system("pause");
  33.    return 0;   
  34. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int a,b;
  6.    cout<<"請輸入第1個數"<<endl;
  7.    cin>>a;
  8.    cout<<"請輸入第2個數"<<endl;
  9.    cin>>b;   
  10.    if(a>b)
  11.    {
  12.      cout<<a<<">"<<b;  
  13.    }else if(b>a)
  14.    {
  15.      cout<<b<<">"<<a;  
  16.    }else
  17.    {
  18.      cout<<a<<"="<<b;   
  19.         
  20.    }
  21.   system("pause");
  22.   return 0;   
  23. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    int z;
  7.   
  8.    
  9.    cout<<"請輸入兩個數字電腦會幫您排列數字的大小"<<endl;
  10.    cout<<"請輸入第一個數"<<endl;
  11.    cin>>x;
  12.    cout<<"請輸入第二個數"<<endl;
  13.    cin>>z;
  14.    
  15.    if(x>z)
  16.       {
  17.             cout<<x<<">"<<z<<endl;
  18.       }
  19.    else if(x>z)
  20.       {
  21.             cout<<x<<">"<<z<<endl;
  22.       }
  23.    else if(z>x)
  24.       {
  25.              cout<<z<<">"<<x<<endl;
  26.       }
  27.    else if(z=x)
  28.       {
  29.              cout<<z<<"="<<x<<endl;
  30.       }  
  31.    
  32.    system("pause");
  33.    return 0;   
  34. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int x, s;
  6. cout<<"請輸入第一個數"<<endl;
  7. cin>>x;
  8. cout<<"請輸入第二個數"<<endl;
  9. cin>>s;
  10.    if(x<s)
  11.   {
  12.       cout<<x<<"<"<<s;   
  13.          
  14.   }else if(s<x)
  15.   {
  16.        cout<< s<<"<"<<x;
  17.    
  18.    }else
  19.    {
  20.         cout<<s<<"="<<x;
  21.    }
  22.    
  23.         
  24.    system("pause");
  25.    return 0;   
  26. }
複製代碼

TOP

返回列表