返回列表 發帖

[隨堂測驗] 基本輸入輸出 (二)

本帖最後由 tonyh 於 2017-2-3 15:41 編輯

試實作如下之執行畫面:

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int x, y;
  7.     cout<<"輸入x: ";
  8.     cin>>x;
  9.     cout<<"輸入y: ";
  10.     cin>>y;
  11.     cout<<"x+y="<<x+y<<endl;
  12.     cout<<"x-y="<<x-y<<endl;
  13.     cout<<"x*y="<<x*y<<endl;
  14.     cout<<"x/y="<<x/y<<endl;
  15.     cout<<"x%y="<<x%y<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  7.     int x;
  8.     cout<<"x值為 ";
  9.     cin>>x;
  10.     cout<<"y值為 ";
  11.     cin>>y;
  12.     cout<<"X+Y="<<x+y<<endl;
  13.     cout<<"X-Y="<<x-y<<endl;
  14.     cout<<"X*Y="<<x*y<<endl;
  15.     cout<<"X/Y="<<x/y<<endl;
  16.     cout<<"X%Y="<<x%y<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int y;
    int x;
    cout<<"x值為 ";
    cin>>x;
    cout<<"y值為 ";
    cin>>y;
    cout<<"X+Y="<<x+y<<endl;
    cout<<"X-Y="<<x-y<<endl;
    cout<<"X*Y="<<x*y<<endl;
    cout<<"X/Y="<<x/y<<endl;
    cout<<"X%Y="<<x%y<<endl;
    system("pause");
    return 0;
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    int y;
  8.    
  9.    cout<<"輸入x的值:";
  10.    cin >> x;
  11.    cout<<"輸入y的值:";
  12.    cin >> y;
  13.    

  14.    cout<<"x+y="<<x+y<<endl;
  15.    cout<<"x-y="<<x-y<<endl;
  16.    cout<<"x*y="<<x*y<<endl;
  17.    cout<<"x/y="<<x/y<<endl;
  18.    cout<<"x%y="<<x%y<<endl;
  19.    system("pause");
  20.    return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    int y;
  8.    
  9.    cout<<"輸入x的值:";
  10.    cin >> x;
  11.    cout<<"輸入y的值:";
  12.    cin >> y;
  13.    

  14.    cout<<"x+y="<<x+y<<endl;
  15.    cout<<"x-y="<<x-y<<endl;
  16.    cout<<"x*y="<<x*y<<endl;
  17.    cout<<"x/y="<<x/y<<endl;
  18.    cout<<"x%y="<<x%y<<endl;
  19.    system("pause");
  20.    return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>     
  2. #include<cstdlib>      
  3. using namespace std;   
  4. int main()   
  5. {
  6.     int x,y;
  7.     cout<< "請輸入x" ;
  8.     cin >>x ;
  9.     cout<<"輸入y";
  10.     cin >>y ;
  11.     cout<<"x+y="<<x+y<<endl;
  12.     cout<<"x-y="<<x-y<<endl;
  13.     cout<<"x*y="<<x*y<<endl;
  14.     cout<<"x/y="<<x/y<<endl;
  15.     cout<<"x%y="<<x%y<<endl;
  16.     system("pause");      
  17.     return 0;               
  18. }
複製代碼

TOP

本帖最後由 吳孟軒 於 2017-2-3 15:34 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {               
  6.   int x;
  7.   int y;
  8.   cout<<"請輸入x"<<endl;
  9.   cin>>x;
  10.   cout<<"請輸入y"<<endl;
  11.   cin>>y;
  12.   cout<<"x+y="<<x+y<<endl;
  13.   cout<<"x-y="<<x-y<<endl;
  14.   cout<<"x*y="<<x*y<<endl;
  15.   cout<<"x/y="<<x/y<<endl;
  16.   cout<<"x%y="<<x%y<<endl;
  17.   
  18.   system("pause");
  19.   return 0;
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a;
  7.     int b;
  8.    
  9.     cout<<"請輸入a:";
  10.     cin>>a;
  11.     cout<<"請輸入b:";
  12.     cin>>a;
  13.    
  14.     cout<<"a="<<a<<endl;
  15.     cout<<"b="<<b<<endl;
  16.      
  17.      if(a<b)
  18.      {
  19.          cout<<"a 大於 b"<<endl;
  20.     }
  21.     else if(a<b)
  22.     {
  23.          cout<<"a 小於b "<<endl;
  24.     }
  25.     else if(a<b)
  26.     {
  27.          cout<<"a 等於 b"<<endl;
  28.      }
  29.          
  30.    system("pause");
  31.    return 0;}
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int a;
  7.     int b;
  8.    
  9.     cout<<"請輸入a:";
  10.     cin>>a;
  11.     cout<<"請輸入b:";
  12.     cin>>a;
  13.    
  14.     cout<<"a="<<a<<endl;
  15.     cout<<"b="<<b<<endl;
  16.      
  17.      if(a<b)
  18.      {
  19.          cout<<"a 大於 b"<<endl;
  20.     }
  21.     else if(a<b)
  22.     {
  23.          cout<<"a 小於b "<<endl;
  24.     }
  25.     else if(a<b)
  26.     {
  27.          cout<<"a 等於 b"<<endl;
  28.      }
  29.          
  30.    system("pause");
  31.    return 0;}
複製代碼

TOP

本帖最後由 吳冠叡 於 2017-2-3 15:36 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  7.     int x;
  8.     cout<<"x值為 ";
  9.     cin>>x;
  10.     cout<<"y值為 ";
  11.     cin>>y;
  12.     cout<<"X+Y="<<x+y<<endl;
  13.     cout<<"X-Y="<<x-y<<endl;
  14.     cout<<"X*Y="<<x*y<<endl;
  15.     cout<<"X/Y="<<x/y<<endl;
  16.     cout<<"X%Y="<<x%y<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>     
  2. #include<cstdlib>      
  3. using namespace std;   
  4. int main()   
  5. {
  6.     int x,y;
  7.     cout<<"設定x為:" ;
  8.     cin>>x ;
  9.     cout<<"設定y為:" ;
  10.     cin>>y ;
  11.     cout<<"x+y="<<x+y<<endl;
  12.     cout<<"x-y="<<x-y<<endl;
  13.     cout<<"x*y="<<x*y<<endl;
  14.     cout<<"x/y="<<x/y<<endl;
  15.     cout<<"x%y="<<x%y<<endl;
  16.     system("pause");      
  17.     return 0;      
  18. }      
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    int y;
  8.    
  9.    cout<<"輸入x的值:";
  10.    cin >> x;
  11.    cout<<"輸入y的值:";
  12.    cin >> y;
  13.    

  14.    cout<<"x+y="<<x+y<<endl;
  15.    cout<<"x-y="<<x-y<<endl;
  16.    cout<<"x*y="<<x*y<<endl;
  17.    cout<<"x/y="<<x/y<<endl;
  18.    cout<<"x%y="<<x%y<<endl;
  19.    system("pause");
  20.    return 0;
  21. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int z;
  8.     cout<<"輸入x的值: ";
  9.     cin>>x;
  10.     cout<<"輸入z的值: ";
  11.     cin>>z;
  12.     cout<<"x+z="<<x+z<<endl;
  13.     cout<<"x-z="<<x-z<<endl;
  14.     cout<<"x*z="<<x*z<<endl;
  15.     cout<<"x/z="<<x/z<<endl;
  16.     cout<<"x%z="<<x%z<<endl;
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
  21.                                     
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  7.     int x;
  8.     cout<<"x值為 ";
  9.     cin>>x;
  10.     cout<<"y值為 ";
  11.     cin>>y;
  12.     cout<<"X+Y="<<x+y<<endl;
  13.     cout<<"X-Y="<<x-y<<endl;
  14.     cout<<"X*Y="<<x*y<<endl;
  15.     cout<<"X/Y="<<x/y<<endl;
  16.     cout<<"X%Y="<<x%y<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int y;
  7.     int x;
  8.     cout<<"輸入x的值";
  9.     cin>>x;
  10.     cout<<"輸入y的值";
  11.     cin>>y;
  12.     cout<<"X+Y="<<x+y<<endl;
  13.     cout<<"X-Y="<<x-y<<endl;
  14.     cout<<"X*Y="<<x*y<<endl;
  15.     cout<<"X/Y="<<x/y<<endl;
  16.     cout<<"X%Y="<<x%y<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表