返回列表 發帖

五則運算

請宣告兩個變數,並對這兩個變數做五則運算(加法、減法、乘法、除法、取餘數),最後將結果顯示出來。

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.       for(int i = 1 ;i < 10 ;  i++)
  7.       {
  8.           cout<<"第"<<i<<"名"<<endl;   
  9.       }   
  10.       system ("pause");
  11.       return 0;
  12. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;   
  8.     x=1;
  9.     y=3;
  10.     cout<<"x現在是"<<x<<"y現在是"<<y<<endl;
  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.    
  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 a;
  7.       int b;
  8.       
  9.       cout<<"請輸入a:";
  10.       cin>>a;
  11.       cout<<"請輸入b:";
  12.       cin >>b;
  13.       cout<<" a= "<< a << endl;
  14.       cout<<" b= "<< b << endl;
  15.       if ( a > b )
  16.     {
  17.       cout <<" a 大於 b "<< endl;
  18.     }
  19.       if ( a < b )
  20.     {
  21.       cout <<" a 小於 b "<< endl;  
  22.     }                 
  23.       if  ( a == b )
  24.     {
  25.        cout <<" a 等於 b "<< endl;   
  26.     }         
  27.       system("pause");
  28.       return 0;
  29. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int a;
  7.       int b;
  8.       
  9.       cout<<"請輸入a:";
  10.       cin>>a;
  11.       cout<<"請輸入b:";
  12.       cin>>b;   
  13.       
  14.       cout<<"a=" <<a<<endl;
  15.       cout<<"b=" <<b<<endl;
  16.       if(a>b)
  17.       {
  18.       cout <<"a 大於 b" <<endl;
  19.       }
  20.       else if(a<b)
  21.       {
  22.       cout <<"a 大於 b" <<endl;
  23.       }
  24.       else
  25.       {
  26.       cout<<"a等於 B"<<endl;
  27.       }      
  28.       system("pause");
  29.       return 0;
  30. }      
複製代碼

TOP

...........................

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     x=5;
  9.     y=10;
  10.     cout<<"x 現在是"<< x << endl;
  11.     cout<<"y 現在是"<< 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.     cout<<"x % y ="<< x % y << endl;
  17.     system("pause");
  18.     return 0;
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     x=5;
  9.     y=10;
  10.     cout<<"x 現在是"<< x << endl;
  11.     cout<<"y 現在是"<< 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.     cout<<"x % y ="<< x % y << endl;
  17.     system("pause");
  18.     return 0;
複製代碼

TOP

[code#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int x;
    int y;
    x=5;
    y=10;
    cout<<"x 現在是"<< x << endl;
    cout<<"y 現在是"<< 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;
][/code]

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x;
  7.    int y;
  8.    x=5;
  9.    y=26;
  10.    cout<<"x現在是 "<< x <<"/ y現在是"<< y <<endl;
  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;
  7.     int y;
  8.     x = 2;
  9.     y = 4;
  10.     cout <<"x+y="<<x + y << endl;
  11.     cout <<" x 現在是"<<" y 現在是"<< 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.     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.     int z;
  9.     x=198;
  10.     y=4;
  11.     z=56;
  12.     cout<< "x現在是198"<<endl;
  13.     cout<< "y現在是4"<<endl;   
  14.     cout<< "z現在是56"<<endl;
  15.     cout<< "x / y % z = "<< x / y % z<<endl;
  16.     cout<< "x * y - z = "<< x * y - z<<endl;
  17.     cout<< "x - y * z = "<< x - y * z<<endl;
  18.     cout<< "x + y / z = "<< x + y / z<<endl;
  19.     cout<< "x % y + z = "<< x % y + z<<endl;
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.       // + - * / %
  7.       int x;
  8.       int y;
  9.       x = 100;     
  10.       y = 1;
  11.       cout <<" x現在是 "<<" y現在是 "<< x <<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.       cout <<"x % y ="<< x % y << endl;
  17.       system("pause");
  18.       return 0;   
  19.    
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x;
  7. int y;
  8. x=6;
  9. y=24;
  10. cout << "x現在是" << "y現在是" << endl;
  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.     //+-*/%
  7.     int x;
  8.     int y;
  9.     x=2;
  10.     y=4;
  11.     cout<<"x現在是"<<x<<"y現在是"<<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.     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.     x=4;
  9.     y=7;
  10.     cout<<"x + y = "<<x + y<<endl;
  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.     system("pause");
  16.     return 0;   
  17. }
複製代碼

TOP

本帖最後由 梁和雋 於 2014-7-3 11:39 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     int z;
  9.     x=2;
  10.     y=1;
  11.     z=12;
  12.     cout<<"x=2,y=1,z=12"<<endl;
  13.     cout<<" x / y + x * y - ( z + x - y) - x / y + x * y - ( z + x - y) "<<endl;cout<< x / y + x * y - ( z + x - y) - x / y + x * y - ( z + x - y) <<endl;
  14.     cout<<" x / y - x * y - ( z + x - y) - x / y - x * y - ( z + x - y) "<<endl;cout<< x / y - x * y - ( z + x - y) - x / y - x * y - ( z + x - y) <<endl;
  15.     cout<<" x / y * x * y - ( z + x - y) - x / y * x * y - ( z + x - y) "<<endl;cout<< x / y * x * y - ( z + x - y) - x / y * x * y - ( z + x - y) <<endl;
  16.     cout<<" x / y / x * y - ( z + x - y) - x / y / x * y - ( z + x - y) "<<endl;cout<< x / y / x * y - ( z + x - y) - x / y / x * y - ( z + x - y) <<endl;
  17.     cout<<" x / y % x * y - ( z + x - y) - x / y % x * y - ( z + x - y) "<<endl;cout<< x / y % x * y - ( z + x - y) - x / y%x * y - ( z + x - y) <<endl;
  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.    x = 36;
  9.    y = 10;
  10.    
  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;
  7.     int y;
  8.     x =-100;
  9.     y =-8523;
  10.     cout<<"x現在是"<<x<<"y現在是"<<y<<endl;
  11.     cout <<"x + y ="<<x+y<<endl;
  12.     cout <<"x - y ="<<x-y<<endl;
  13.     cout <<"x * y ="<<x*y<<endl;
  14.     cout <<"x / kny ="<<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.     // + - * / %
  7.     int x;
  8.     int y;
  9.     x= 2;
  10.     y= 8;
  11.     cout<<"x現在是"<<x<<",y現在是"<<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.     cout <<"x%y=" <<x%y <<endl;
  17.     system ("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表