Board logo

標題: [隨堂測驗] 基本輸入輸出 (二) [打印本頁]

作者: 陳品肇    時間: 2018-7-9 10:41     標題: [隨堂測驗] 基本輸入輸出 (二)

試實作如下之執行畫面:
[attach]4438[/attach]
作者: 郭子揚    時間: 2018-7-10 09:11

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

作者: 古蕾娜    時間: 2018-7-10 09:14

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"please enter a whole number:";
  8.     cin>>x;
  9.    
  10.     int y;
  11.     cout<<"please enter a whole number:";
  12.     cin>>y;
  13.    
  14.      cout<<"when x's value is "<<x<<",y's value is"<<y<<"when..."<<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.      cout<<"x%y="<<x%y<<endl;
  20.     system("pause");
  21.     return 0;
  22. }      
複製代碼

作者: 曲書辰    時間: 2018-7-10 09:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int x, 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. }
複製代碼

作者: 高瑞宥    時間: 2018-7-10 09:17

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     cout<<"please enter a whole number:";
  8.     cin>>x;
  9.    
  10.     int y;
  11.     cout<<"please enter a whole number:";
  12.     cin>>y;
  13.    
  14.      cout<<"when x's value is "<<x<<",y's value is"<<y<<"when..."<<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.      cout<<"x%y="<<x%y<<endl;
  20.     system("pause");
  21.     return 0;
  22. }      
複製代碼

作者: 古昇暘    時間: 2018-7-10 09:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  //int ---> integer 整數
  5. {
  6.     int x, y;
  7.     cout<<"the value of x :";
  8.     cin>>x;
  9.     cout<<"the value of 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. }
複製代碼

作者: 陳元謙    時間: 2018-7-10 09:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     cout<<"輸入X的值:";
  9.     cin>>x;
  10.     cout<<"輸入y的值:";
  11.     cin>>y;
  12.    
  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.     cout<<"x%y="<<x%y<<endl;
  18.    
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

作者: 王立勝    時間: 2018-7-10 09:19

  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的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 王立恩    時間: 2018-7-10 09:19

  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.    
  13.     cout<<"當x值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  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.      
  20.     system("pause");
  21.     return 0;
  22.    
  23. }
複製代碼

作者: 陳元晴    時間: 2018-7-10 09:20

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int  x;
  7.   int  y;
  8.   cout<<"輸入x的值";
  9.   cin>> x;
  10.   cout<<"輸入y的值";
  11.   cin>> y;
  12.   
  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.   cout<<"x%y="<<x%y<<endl;
  18.   
  19.      system("pause");
  20.      return 0;
  21. }
複製代碼

作者: 張百閎    時間: 2018-7-10 09:21

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  
  5. {
  6.     int x;  
  7.     int y;
  8.     cout<<"請輸入一個整數:"<<endl;
  9.     cin>>x;                     
  10.     cout<<"請在輸入一個整數:"<<endl;
  11.     cin>>y;
  12.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 蘇立維    時間: 2018-7-10 09:22

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  //int ---> integer 整數
  5. {
  6.     int x;
  7.     cout<<"請輸入第一個數";
  8.     cin>> x;
  9.     int y;
  10.     cout<<"請輸入第二個數";
  11.     cin>> y;  //宣告變數
  12.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

作者: 吳柏佑    時間: 2018-7-10 09:22

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    cin>>x;
  8.    cout<<"當x值為"<<x<<endl;
  9.    int y;
  10.    cin>>y;
  11.    cout<<"當y值為"<<y<<endl;
  12.    cout<<"當x值為"<<x<<",當y值為時"<<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.    cout<<"x%y="<<x%y<<endl;
  18.    system("pause");
  19.    return 0;
  20. }
複製代碼

作者: 游芸溱    時間: 2018-7-10 09:25

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

  4. int main()
  5. {
  6. int a,b;

  7. cout<<"請輸入a:";
  8. cin>>a;
  9. cout<<"請輸入b:";
  10. cin>>b;

  11. cout<<"a="<<a<<endl;
  12. cout<<"b="<<b<<endl;

  13. if(a>b)
  14. {
  15.        cout<<"a大於b"<<endl;
  16.        }
  17. else if(a<b)
  18. {
  19.      cout<<"a小於b"<<endl;
  20.      }
  21.      else
  22.      {
  23.      cout<<"a等於b"<<endl;
  24.      }
  25. system("pause");
  26. return 0;
  27. }
複製代碼

作者: 許家華    時間: 2018-7-10 09:25

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  //int ---> integer 整數
  5. {
  6.     int x,y;
  7.     cout<<"輸入x的值:";
  8.     cin>>x;
  9.     cout<<"輸入y的值:";
  10.     cin>>y;
  11.    
  12.    
  13.     cout<<"當x的值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  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. }
複製代碼

作者: 黃怡臻    時間: 2018-7-10 09:28

  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的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  17.    
  18.    
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

作者: 張韶庭    時間: 2018-7-10 09:29

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x,y;
  7.    cout<<"請輸入一個整數:";
  8.    cin>>x;
  9.    cout<<"請輸入一個整數:";
  10.    cin>>y;
  11.    cout<<"當x的值為"<<x<<",y的值為"<<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.    cout<<"x%y="<<x%y<<endl;  
  17.    system("pause");
  18.    return 0;
  19. }
複製代碼

作者: 李珮薰    時間: 2018-7-10 09:30

  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的值為"<<x<<",y的值為"<<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.      cout<<"x%y="<<x%y<<endl;





  17.     system("pause");

  18.     return 0;

  19. }
複製代碼

作者: 吳孟修    時間: 2018-7-10 09:32

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int x;
  7.      int y;
  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.       
  18.      system("pause");   
  19.      return 0;
  20. }
複製代碼

作者: 吳孟書    時間: 2018-7-10 09:33

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int a;
  7.      int b;
  8.      cout<<"輸入x的值"<<endl;
  9.      cin>> a;
  10.      cout<<"輸入y的值"<<endl;   
  11.      cin>> b;  
  12.      cout<<"x+y="<<a+b<<endl;
  13.      cout<<"x-y="<<a-b<<endl;
  14.      cout<<"x*y="<<a*b<<endl;
  15.      cout<<"x/y="<<a/b<<endl;
  16.      cout<<"x%y="<<a%b<<endl;

  17.      system("pause");
  18.      return 0;
  19. }
複製代碼

作者: 張仲亨    時間: 2018-7-10 09:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  //int ---> integer 整數
  5. {
  6.     int x,y;
  7.     cout<<"請輸入y的值"<<endl;
  8.     cin>>y;
  9.     cout<<"請輸入x的值"<<endl;
  10.     cin>>x;
  11.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  17.     system("pause");
  18.     return 0;
複製代碼

作者: 林楷喆    時間: 2018-7-10 09:35

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    int y;
  8.    cout<<"請輸入第一個數";
  9.    cin>>x;
  10.    cout<<"請輸入第二個數";
  11.    cin>>y;   
  12.    cout<<"當x的質為"<<x<<",y的質為"<<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.    cout<<"x%y="<<x%y<<endl;


  18.   system("pause");
  19.   return 0;
  20. }
複製代碼

作者: 游芸溱    時間: 2018-7-10 10:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    cin>>x;
  8.    cout<<"當x值為"<<x<<endl;
  9.    int y;
  10.    cin>>y;
  11.    cout<<"當y值為"<<y<<endl;
  12.    cout<<"當x值為"<<x<<",當y值為時"<<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.    cout<<"x%y="<<x%y<<endl;
  18.    system("pause");
  19.    return 0;
  20. }
複製代碼





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