返回列表 發帖

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

本帖最後由 周政輝 於 2017-8-2 09:49 編輯

實作如下之執行畫面:


本帖隱藏的內容需要回復才可以瀏覽
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

[quote][/quote]#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
    cout<<"請輸入x的值"<<endl;
    cout<<"請輸入y的值"<<endl;
    int x=0;
    int y=0;
    cin>>x;
    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=0;
  7.     int y=0;
  8.    
  9.     cout<<"輸入x的值"<<endl;
  10.     cin>>x;
  11.     cout<<"輸入y的值"<<endl;
  12.     cin>>y;
  13.    
  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.    
  21.    
  22.    
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

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

TOP

#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
    int X=1234;
    int Y=567;
     cout<<"請輸入X的值"<<endl;
     cout<<"請輸入Y的值"<<endl;
     cin>>X;
     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=0,y=0;
  7.     cout<<"請輸入x的值""\r\n";
  8.     cout<<"請輸入y的值""\r\n";
  9.     cin>>x;
  10.     cin>>y;
  11.     cout<<x+y<<"\r\n";
  12.     cout<<x-y<<"\r\n";
  13.     cout<<x*y<<"\r\n";
  14.     cout<<x/y<<"\r\n";
  15.     cout<<x%y<<"\r\n";
  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;
  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.     system("pause");
  18.     return 0;
  19. }
複製代碼

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.    
  10.     cin>>x;
  11.     cout<<"輸入y的值";
  12.    
  13.     cin>>y;
  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;
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int number1;
int number2;
string str;
cin>> number1;
cin>> number2;
cout<<"number1+number2="<<number1+number2<<endl;
cout<<"number1-number2="<<number1-number2<<endl;
cout<<"number1*number2="<<number1*number2<<endl;
cout<<"number1/number2="<<number1/number2<<endl;
cout<<"number1%number2="<<number1%number2<<endl;
cout<<"hello"<<endl;   
system("pause");
return 0;   
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=0;
  7.     int y=0;
  8.    
  9.     cout<<"輸入x的值"<<endl;
  10.     cin>>x;
  11.     cout<<"輸入y的值"<<endl;
  12.     cin>>y;
  13.    
  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.    
  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 x=0,y=0;
  7.     cout<<"請輸入x的值""\r\n";
  8.     cout<<"請輸入y的值""\r\n";
  9.     cin>>x;
  10.     cin>>y;
  11.     cout<<"x+y="<<x+y<<"\r\n";
  12.     cout<<"x-y="<<x-y<<"\r\n";
  13.     cout<<"x*y="<<x*y<<"\r\n";
  14.     cout<<"x/y="<<x/y<<"\r\n";
  15.     cout<<"x%y="<<x%y<<"\r\n";
  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=0;
  7.   int y=0;  
  8.   cout<<"輸入x的值"endl;
  9.   cin>>x;
  10.   cout<<"輸入y的值"endl;
  11.   cin>>y;
  12.   cout<<x+y<<endl;
  13.   cout<<x-y<<endl;
  14.   cout<<x*y<<endl;
  15.   cout<<x/y<<endl;
  16.   cout<<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.      cout<<"請輸入x的數"<<endl;   
  7.      cout<<"請輸入y的數"<<endl;
  8.      int x=0;
  9.      int y=0;
  10.      cin>>x;
  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. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int x;
  7.      int y;
  8.    
  9.      cout<<"hello"<<endl;
  10.      cout<<"請輸入x的值"<<endl;
  11.      cin>>x;
  12.      cout<<"請輸入y的值"<<endl;
  13.      cin>>y;   
  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.    
  7.    
  8.     int x;
  9.     int y;
  10.     cout << "請輸入x的值:" <<endl;
  11.    
  12.     cin>>x;
  13.     cout << "請輸入y的值:" <<endl;
  14.    
  15.     cin>>y;
  16.    
  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.     cout<<"x%y="<<x%y<<endl;
  22.    
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼
回復 1# 周政輝

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=0;
  7.     int y=0;
  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.     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. cout<<"請輸入y的值";
  9. cin>>y;
  10. cin>>x;
  11. //int x;
  12. //int Y;
  13. cout<<x+y<<"\r\n";
  14. cout<<x-y<<"\r\n";
  15. cout<<x*y<<"\r\n";
  16. cout<<x/y<<"\r\n";
  17. cout<<x%y<<"\r\n";
  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=0;
  7.     int y=0;
  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. system("pause");
  18. return 0;      
  19. }         
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=0;
  7.     int y=0;
  8.    
  9.    
  10.     cout<<"當x的值為"<<endl;
  11.      cin>>x;
  12.     cout<<"當y的值為"<<endl;
  13.     cin>>y;
  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.    
  7.    int x;
  8.    int y;
  9.    cout<<"請輸入X的值"<<endl;
  10.    
  11.    
  12.    
  13.    cin>>x;
  14.    cout<<"請輸入y 值"<<endl;
  15.    
  16.    cin>>y;

  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.    cout<<"x%y="<<x%y<<endl;
  22.       
  23.    
  24.    
  25.    
  26.    
  27.    
  28.    
  29.    
  30.    
  31.    
  32.      system("pause");
  33.      
  34.     return 0;
  35.    
  36.    
  37. }
複製代碼

TOP

返回列表