返回列表 發帖

兩數計算

使用者任意輸入兩個數值 以及想要運算的符號
並將結果顯示於螢幕上

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b,c;
  7.     cin>>a;
  8.     cin>>b;
  9.     cin>>c;
  10.     if(c==1)
  11.     {
  12.     cout<<a<<"+"<<b<<"="<<a+b<<endl;        
  13.     }
  14.     if(c==2)
  15.     {
  16.     cout<<a<<"-"<<b<<"="<<a-b<<endl;        
  17.     }
  18.     if(c==3)
  19.     {
  20.     cout<<a<<"*"<<b<<"="<<a*b<<endl;        
  21.     }if(c==4)
  22.     {
  23.     cout<<a<<"/"<<b<<"="<<a/b<<endl;        
  24.     }
  25.      system("pause");
  26.     return 0;   
  27. }
複製代碼

TOP

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
   int i;
   int num=0,num1=0;
   cout<<"請輸入第一個數:";
   cin>>num;
   cout<<"請輸入第二個數:";
   cin>>num1;
   cout<<"1=+,2=-,3=*,4=/,請輸入1234:";
   cin>>i;
   if(i==1){
   cout<<num+num1;        
   }
   else if(i==2){
   cout<<num-num1;        
   }
   else if(i==3){
   cout<<num*num1;        
   }
   else if(i==4){
   cout<<num/num1;        
   }
   
   
   system("pause");
   return 0;
}

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int num1,num2,choose;
  6.     cout << "我們將為您做兩數的的運算"<<endl;
  7.     cout << "乘請輸入1,除請輸入2,加請輸入3,減請輸入4:"<<endl;
  8.     cin>>choose;
  9.     cout << "請輸入第一個數:";
  10.     cin >> num1;
  11.     cout << "請輸入第二個數:";
  12.     cin >> num2;
  13.     if(choose==1)
  14.     {
  15.        cout<<num1*num2;         
  16.     }
  17.     else if(choose==2)
  18.     {
  19.        cout<<num1/num2;         
  20.     }
  21.     else if(choose==3)
  22.     {
  23.        cout<<num1+num2;         
  24.     }
  25.     else if(choose==4)
  26.     {
  27.        cout<<num1-num2;         
  28.     }
  29.     system("pause");
  30.     return 0;   
  31. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int q;
  7.      int x; int s;
  8.      cout<<"請輸入數字"<<endl;
  9.      cout<<"請輸入x的值:" <<endl;
  10.      cin>>x;
  11.      cout<<"請輸入s的值:" <<endl;
  12.      cin>>s;
  13.      cout<<"(1)+(2)-(3)/(4)*"<<endl;
  14.      cin>>q;
  15.      if(q==1)
  16.      {
  17.        cout<<q+q;      
  18.      }
  19.      else if(q==2)
  20.      {
  21.        cout<<q-q;      
  22.      }
  23.      else if(q==3)
  24.      {
  25.        cout<<q*q;      
  26.      }
  27.      else if(q==4)
  28.      {
  29.        cout<<q/q;      
  30.      }
  31.      
  32.      system("pause");
  33.      return 0;     
  34. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x=0,y=0,z=0;
    cin>>x;
    cin>>y;
   
    cout<<"1 x+y,2 x-y,3 x*y,4 x/y";
    cin>>z;
    if (z==1){
    cout << "x+y=" << x+y << endl;
    }
     else if(z==2){
    cout << "x-y=" << x-y << endl;
    }
      else if(z==3){
    cout << "x*y=" << x*y << endl;
    }
      else if(z==4){
    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 a,b;
  7.     cout<<"請輸入數字:";
  8.     cin>>a;
  9.     cout<<"請輸入數字:";
  10.     cin>>b;
  11.     int c;
  12.     cout<<"請輸入數字(1)+(2)-(3)*(4)/:";
  13.     cin>>c;
  14.     if (c==1)
  15.     cout<<a+b<<endl;
  16.     else if (c==2)
  17.     cout<<a-b<<endl;
  18.     else if(c==3)
  19.     cout<<a*b<<endl;
  20.     else if(c==4)
  21.     cout<<a/b<<endl;
  22.     else
  23.     cout<<"請重輸入"<<endl;
  24.      
  25. system("pause");
  26.     return 0;
  27. }
複製代碼

TOP

返回列表