返回列表 發帖

五則運算 (二)

試做一個可自行指定x值與y值的五則運算程式

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     int y;
  7.     cout<<"請輸入x的值:";
  8.     cin>>x;
  9.     cout<<endl;
  10.     cout<<"請輸入y的值:";
  11.     cin>>y;
  12.    
  13.     cout<<"你剛輸入的值是"<<x<<"y為"<<y<<endl;
  14.     cout<<"x和y的五則運算如下..."<<endl;
  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.    
  22.    
  23.    
  24.    
  25.     system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

回復 2# 劉漢文
  1. #include<iostream>     //呼叫我要使用的工具

  2. using namespace std;   //將工具放在工具箱  

  3. int main()     //主程式

  4. {

  5.   int x;

  6.   int y;

  7.   cout<<"請輸入x的值:";

  8.   cin>>x;   

  9.   cout<<"請輸入y的值:";

  10.   cin>>y;     

  11.   cout<<"x的值:"<<x<<endl;  

  12.   cout<<"y的直:"<<x<<endl;  

  13. system("pause");

  14. return 0;   

  15.    

  16. }
複製代碼

TOP

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


  20.      
  21.        system("pause");
  22.     return 0;
  23. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    int y;
  7.    cout << "請輸入 x " << endl;
  8.    cin >> x;
  9.    cout << "請輸入 y " << endl;
  10.    cin >> y;
  11.    
  12.    cout << "您輸入的 x 是" << x << " y 是 " << y << endl;
  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.    system("pause");
  20.    return 0;
  21. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     int y;
  7.     cout<<"請輸入x值:";
  8.     cin>>x;
  9.     cout<<"請輸入y值:";
  10.     cin>>y;
  11.     cout<<"您剛輸入的x值是:"<<x<<endl;
  12.     cout<<"您剛輸入的y值是:"<<y<<endl;  
  13.     cout<<"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.     cout<<"x%y="<<x%y<<endl;
  19. system("pause");
  20.   return 0;   
  21. }
複製代碼

TOP

#include <iostream>
using namespace std;
int main()
{
  int x;
  int y;
  cout<<"輸入x值:"<<endl;     
  cin>>x;
  cout<<"輸入y值:"<<endl;     
  cin>>y;
  cout<<"x值:"<<x<<endl;
  cout<<"y值:"<<y<<endl;
  cout<<"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;
  cout<<"x%y="<<x%y<<endl;
  system("pause");
  return 0;
}

TOP

返回列表