返回列表 發帖

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

本帖最後由 陳品肇 於 2019-1-28 15:30 編輯

試實作如下之執行畫面:
  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+b="<<a+b<<endl;   
  12.     cout<<"a-b="<<a-b<<endl;
  13.     cout<<"a*b="<<a*b<<endl;
  14.     cout<<"a/b="<<a/b<<endl;
  15.     cout<<"a%b="<<a%b<<endl; //取餘數
  16.     system("pause");      
  17.     return 0;              
  18. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  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+b="<<a+b<<endl;
  12.     cout<<"a-b="<<a-b<<endl;
  13.     cout<<"a*b="<<a*b<<endl;
  14.     cout<<"a/b="<<a/b<<endl;
  15.     cout<<"a%b="<<a%b<<endl;
  16.       
  17.      system("pause");
  18.      return 0;
  19.          
  20.    
  21. }
複製代碼

TOP

  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+b="<<a+b<<endl;
  12.        cout<<"a-b="<<a-b<<endl;
  13.        cout<<"a*b="<<a*b<<endl;
  14.        cout<<"a/b="<<a/b<<endl;
  15.        cout<<"a%b="<<a%b<<endl;
  16.        system("pause");
  17.        return 0;
複製代碼

TOP

  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+b="<<a+b<<endl;
  12.     cout<<"a-b="<<a-b<<endl;
  13.     cout<<"a*b="<<a*b<<endl;
  14.     cout<<"a/b="<<a/b<<endl;
  15.     cout<<"a%b="<<a%b<<endl;
  16.    
  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=23,y=7;
  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=23,y=7;
  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.      
  17.          system("pause");
  18.          return 0;
  19. }
複製代碼

TOP

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

TOP

  1. #include<iostream> //   
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a,b;
  7.   cout<<"";
  8.   cin>>a;
  9.   cout<<"";
  10.   cin>>b;
  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.                                                                         
  17.   system("pause");
  18.   return0;
  19. }  
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int x,y;

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


  11.    
  12. cout<<"x+y="<<x+y;     
  13. cout<<"x-y="<<x-y;
  14. cout<<"x*y="<<x*y;
  15. cout<<"x/y="<<x/y;
  16. cout<<"x%y="<<x%y;
  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 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 a ,b;
  7.     cout<<"請輸入a:";
  8.     cin>>a;
  9.     cout<<"請輸入b:";
  10.     cin>>b;
  11.     cout<<"a+b="<<a+b<<endl;   
  12.     cout<<"a-b="<<a-b<<endl;
  13.     cout<<"a*b="<<a*b<<endl;
  14.     cout<<"a/b="<<a/b<<endl;
  15.     cout<<"a%b="<<a%b<<endl; //取餘數
  16.     system("pause");      
  17.     return 0;              
  18. }
複製代碼

TOP

返回列表