返回列表 發帖

五則運算

  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間

  4. int main()                 //程式從 "main" 開始執行
  5. {
  6.     int x;
  7.     int y;
  8.     x = 5;
  9.     y = 10;
  10.    
  11.     cout << "目前X為:" << x << endl;
  12.     cout << "目前Y為:" << 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.     cout << "x % y = " << x%y << endl;
  18.    
  19.     system("pause");       //讓程式暫停
  20.     return 0;              //程式執行正確
  21. }
複製代碼

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x;
  7.     int y;
  8.     x = 23;
  9.     y = 7;
  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.    
  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 = 50;
  9.   y = 40;
  10.   cout<<"目前x為:"<<x<<endl;
  11.   cout<<"目前y為:"<<y<<endl;
  12.   cout<<"當x的值為"<<x<<",y的值為"<<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.   cout <<"x%y="<<x%y<<endl;
  18.   system("pause");
  19.     return 0;
  20.     }
複製代碼

TOP

  1. #include<iostream>            //引入輸出輸入
  2. #include<cstdlib>             //使用C的標準函式庫
  3. using namespace std;          //使用命名空間

  4. int main()                    //開始執行程式
  5. {
  6.     int x;
  7.     int y;
  8.     x = 1;
  9.     y = 9;
  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;                 // 告訴程式運作正確
  19. }
複製代碼

TOP

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間
  4.   
  5. int main()                      //程式從"main'開始執行
  6. {                              

  7.           int x;
  8.            int y;
  9.            x=1;
  10.            y=199;
  11.          
  12.            cout <<"目前的x:" << x <<endl;
  13.            cout <<"目前的y;" << 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.            
  20.         system("pause");            //讓程式暫停   
  21.     return 0;                   //告訴程式執行正確
  22. }
  23.                   
複製代碼

TOP

  1. #include <iostream>             //引入輸出入指令
  2. #include <cstdlib>              //引入c語言標準函數
  3. using namespace std;            //使用標準函式庫命名空間
  4.   
  5. int main()                      //程式從"main'開始執行
  6. {                              

  7.           int x;
  8.            int y;
  9.            x=1;
  10.            y=199;
  11.          
  12.            cout <<"目前的x:" << x <<endl;
  13.            cout <<"目前的y;" << 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.            
  20.         system("pause");            //讓程式暫停   
  21.     return 0;                   //告訴程式執行正確
  22. }
  23.                   
複製代碼

TOP

  1. #include <iostream>         //引入輸出.入的指令
  2. #include <cstdlib>          //引入c的標準函式
  3. using namespace std;        //使用標準函式庫命名
  4. int main()                  //程式從"main"執行
  5. {
  6.     int x;
  7.     int y;
  8.     x=178;
  9.     y=167;
  10.    
  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.      
  18.     system("pause");        //讓程式暫停
  19.     return 0;               //告訴程式執行正確
  20. }
複製代碼

TOP

  1. #include <iostream>                     //引入輸出輸入指令
  2. #include <cstdlib>                     //引入c的語言 的標準函式
  3. using namespace std;                  //用標準函式庫命名空間

  4. int main()                           //程式從"main"開始執行

  5. {   
  6.      int x;
  7.      int y;
  8.      x=88;
  9.      y=64;   

  10. cout<<"目前x為:"<<x<<endl;
  11. cout<<"目前y為:"<<y<<endl;
  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.     int x;
  7.     int y;
  8.     x = 23;
  9.     y = 7;
  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.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

  1. #include<iostream>     //引入輸出輸入指令
  2. #include<cstdlib>      //引入C的標準函式  
  3. using namespace std;   //使用標準函式庫命名空間

  4. int main()             //程式從 "main" 開始執行
  5. {
  6.     int x;
  7.     int y;
  8.     x = 23;
  9.     y = 7;
  10.    
  11.     cout<<"目前X為:"<<x<<endl;
  12.     cout<<"目前Y為:"<<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.     cout<<"x%y="<<x%y<<endl;
  18.    
  19.     system("pause");   //讓程式暫停
  20.     return 0 ;          //程式執行正確
  21. }
複製代碼

TOP

  1. #include <iostream>        //引入輸出輸入的指令

  2. #include <cstdlib>         //引入C的標準函式

  3. using namespace std;       //使用標準函式庫命名空間



  4. int main()                 //程式從 "main" 開始執行

  5. {

  6.     int x;

  7.     int y;

  8.     x = 5;

  9.     y = 10;

  10.    

  11.     cout << "目前X為:" << x << endl;

  12.     cout << "目前Y為:" << 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.     cout << "x % y = " << x%y << endl;

  18.    

  19.     system("pause");       //讓程式暫停

  20.     return 0;              //程式執行正確

  21. }
複製代碼

TOP

#include <iostream>        //引入輸出輸入的指令

#include <cstdlib>         //引入C的標準函式

using namespace std;       //使用標準函式庫命名空間



int main()                 //程式從 "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;              //程式執行正確

}

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()

  5. {
  6.     int x;
  7.     int y;
  8.     x = 12;
  9.     y = 9;

  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;
  19. }
複製代碼

TOP

  1. #include <iostream>        //引入輸出輸入的指令
  2. #include <cstdlib>         //引入C的標準函式
  3. using namespace std;       //使用標準函式庫命名空間

  4. int main()                 //程式從 "main" 開始執行
  5. {
  6.     int x;
  7.     int y;
  8.     x = 5;
  9.     y = 10;
  10.    
  11.     cout << "目前X為:" << x << endl;
  12.     cout << "目前Y為:" << 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.     cout << "x % y = " << x%y << endl;
  18.    
  19.     system("pause");       //讓程式暫停
  20.     return 0;              //程式執行正確
  21. }
複製代碼

TOP

  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;

  4. int main()

  5. {

  6.     int x;

  7.     int y;

  8.     x = 23;

  9.     y = 7;

  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.    

  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 = 42;
  9.   y = 71;
  10.   cout<<"目前x為:"<<x<<endl;
  11.   cout<<"目前y為:"<<y<<endl;
  12.   cout<<"當x的值為"<<x<<",y的值為"<<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.   cout <<"x%y="<<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 = 81;
  9.   y = 95;
  10.   cout<<"目前x為:"<<x<<endl;
  11.   cout<<"目前y為:"<<y<<endl;
  12.   cout<<"當x的值為"<<x<<",y的值為"<<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.   cout <<"x%y="<<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=23;
  9. y=7;
  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;                  
  19. }                  
複製代碼

TOP

  1. #include <iostream>     輸出輸入//引入
  2. #include <cstdlib>          //引入C的標準函式
  3. using namespace std;    //命名空間
  4. int main()                       //開始執行

  5. {
  6.     int x ;
  7.     int y ;
  8.     x=23 ;
  9.     y=7 ;
  10.     cout<<"目前x為:"<< x<<endl;
  11.     cout<<"目前y為:"<< y<<endl;
  12.    system("pause");     //讓程式暫停
  13.     return 0;                  //告訴程式無誤
  14. }
複製代碼

TOP

  1. #include <iostream>    //引入輸出輸入的指令
  2. #include <cstdlib>     //引入c的標準函式
  3. using namespace std;   //引入c的標準函式庫命名空間
  4. int main()             //程式從開始執行

  5. {
  6.     int x;
  7.     int y;
  8.     x=58;
  9.     y=61;
  10.    
  11.     cout<<"目前x為"<<x<<endl;
  12.     cout<<"目前y為"<<y<<endl;
  13.     system("pause");    //讓程式暫停
  14.     return 0;        //回報程式運作正確
  15. }
複製代碼

TOP

返回列表