Board logo

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

作者: 蔡昀儒    時間: 2019-8-22 15:52     標題: [隨堂測驗] 基本輸入輸出

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

實作如下之執行畫面:
[attach]6988[/attach]
作者: 劉芊函    時間: 2019-8-23 09:28

#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;   
}
作者: 高湘庭    時間: 2019-8-23 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<<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. }   
複製代碼

作者: 邱琦富    時間: 2019-8-23 09:32

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

作者: 古紹辰    時間: 2019-8-23 09:36

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

作者: 張書睿    時間: 2019-8-23 09:36

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

作者: 李泓寬    時間: 2019-8-23 09: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. }
複製代碼

作者: 周瑋杰    時間: 2019-8-23 09:42

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

作者: 黃祈瑋    時間: 2019-8-23 10:02

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

作者: 周孫印    時間: 2019-8-23 11:07

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





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