返回列表 發帖

[隨堂測驗] 基本輸入輸出

本帖最後由 蔡昀儒 於 2019-8-23 16:01 編輯

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

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
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.   cout<<"請輸入x的值:";
  9.     cin>>x;
  10.   cout<<"請輸入y的值:";

  11.   cin>>y;
  12.   cout<<"你輸入的數字是"<<x<<endl;
  13.   cout<<"你輸入的數字是"<<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. #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,y;
  7. cout<<"請輸入x的值:";
  8. cin>>x;
  9. cout<<"請輸入y的值:";
  10. cin>>y;
  11.         
  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.     system("pause");
  19.     return 0;
複製代碼

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,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<cstdlib>
  2. using namespace std;
  3. int main()
  4. {
  5.   
  6.   int   x, y;
  7.   
  8.   
  9.   cout<<"請輸入一整數x: " ;
  10.    cin>>x;
  11.   
  12.     cout<<"請輸入一整數y";
  13.      
  14.   cin>>y;
  15.   
  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.   cout<<"x%y="<<x%y<<endl;
  21.   system("pause");
  22.   return 0 ;
  23. }
複製代碼

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+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;
複製代碼

TOP

  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<<endl;
  13.   cout<<"你輸入的數字是"<<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

返回列表