返回列表 發帖

五則運算(ㄧ)

  1. #include<iostream> // <-基本輸出輸入的函式庫 Input Output   cin 輸入 cout 輸出  
  2. #include<cstdlib> //主要的函式庫 Library
  3. using namespace std;
  4. int main()
  5. {
  6.     int x =10; int y = 20;
  7.    cout << "x+y=" << x+y << endl;
  8.    cout << "x-y=" << x-y << endl;
  9.    cout << "x*y=" << x*y << endl;
  10.    cout << "x/y=" << x/y << endl;
  11.    cout << "x%y=" << x%y << endl;
  12.     system("pause");  
  13.     return 0;  
  14. }
複製代碼

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=566565;
  7.     int y=616524;
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.       int x =10; int y =20;
  7.       
  8.       cout<<"x+y"<<x+y<<endl;
  9.       cout<<"x-y"<<x-y<<endl;
  10.       cout<<"x*y"<<x*y<<endl;
  11.       cout<<"x/y"<<x/y<<endl;
  12.       cout<<"x%y"<<x%y<<endl;
  13.       
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x=18;int y=4;
    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

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x=18;int y=4;
    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 m=1;int n=2;
  7.     cout<<"m+n="<<m+n<<endl;
  8.     cout<<"m-n="<<m-n<<endl;
  9.     cout<<"m*n="<<m*n<<endl;
  10.     cout<<"m/n="<<m/n<<endl;
  11.     cout<<"m%n="<<m%n<<endl;
  12.    
  13.    
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

返回列表