返回列表 發帖

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

試實作如下之執行畫面:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x=5,y=4;
  7. cout<<"輸入x的值"<<endl;

  8. cin>>x;
  9. cout<<"輸入y的值"<<endl;
  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. }
複製代碼

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.      

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

TOP

  1. using namespace std;
  2. int main()
  3. {
  4.     int x,y;
  5. cout<<"輸入x的值";
  6. cin>>x;
  7. cout<<"輸入y的值";
  8. cin>>y;
  9. cout<<"當x的值為"<<x<<";y的值為"<<y<<"時..."<<endl;
  10. cout<<"x+y="<<x+y<<endl;   

  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.    system("pause");
  17.    return 0;   
  18. }
複製代碼

TOP

返回列表