Board logo

標題: 五則運算 [打印本頁]

作者: 王瑞喻    時間: 2021-2-1 15:09     標題: 五則運算

+  加
-   減     
*  乘
/   除
% 取餘數

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  //int ---> integer 整數
  5. {
  6.     int x=12,y=5;  //宣告變數
  7.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 鄧崴仁    時間: 2021-2-1 15:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int  a;
  7.     cout<<"請輸入一整數:";
  8.     cin>>a
  9.     cout<<"您輸入的數字是"<<a<<endl;
  10.    
  11.     system("pause")
  12.     return 0
  13. {
複製代碼

作者: 李天輝    時間: 2021-2-1 15:34

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main() {
  5. int a;
  6. int b;
  7.   cout << "a=";
  8.   cin >> a;
  9.   cout << "b=";
  10.   cin >> b;
  11.   cout << "a+b=" <<a+b<<endl  ;
  12.   cout << "a-b=" <<a-b<<endl  ;
  13.   cout << "a*b=" <<a*b<<endl  ;
  14.   cout << "a/b=" <<a/b<<endl  ;
  15.   cout << "a%b " <<a%b<<endl ;
  16.   }
複製代碼

作者: 方黃生    時間: 2021-2-2 09:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=58,y=9;
  7.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 蔡宜均    時間: 2021-2-2 09:58

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=23,y=7;
  7.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 黃昱凱    時間: 2021-2-2 10:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=23,y=7;
  7.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 任璿    時間: 2021-2-2 10:01

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
  int x=256,y=5;
  cout<<"x值為"<<x<<"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;
}
作者: 莊鈞宸    時間: 2021-2-2 10:02

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()  
  5. {
  6.     int x=12,y=5;  
  7.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 何若晴    時間: 2021-2-2 10:04

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=10,y=9;
  7.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 林昕霓    時間: 2021-2-2 10:08

回復 1# 王瑞喻

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x=23,y=7;
    cout<<"當x的值為"<<",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;
}
作者: 張鈊喬    時間: 2021-2-2 10:11

回復 1# 王瑞喻


    #include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    //五則運算
    //int x;
    //int y;
    int x=23,y=7;
   
    cout<<"當x的值為"<<x<<",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;
作者: 莊念篪    時間: 2021-2-2 10:11

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x=23,y=7;
    cout<<"當x的值為"<<x<<",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;
}
作者: 方凱聲    時間: 2021-2-2 10:12

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=32,y=6;
  7.      
  8.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 吳亦勛    時間: 2021-2-2 10:12

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=23,y=7;
  7.    
  8.     cout<<"當x值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 張晏滕    時間: 2021-2-2 10:13

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.    
  8.     cout<<"當x的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  14.    
  15.     system("pause");
  16.     return 0;
  17. }   
複製代碼

作者: 李奕廷    時間: 2021-2-2 10:15

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. { int  x124
  6.     int  y;=12
  7.    
  8.     cout<<"如果x="<<x<<",y="<<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<<"..."<<x%y<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼
回復 1# 王瑞喻
作者: 王廷悠    時間: 2021-2-2 10:16

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    //五則運算
    //int x;
    //int y;
    int x=23,y=7;   
   
    cout<<"當x的值為"<<x<<",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;
}
作者: 怡璇    時間: 2021-2-2 10:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     //五則運算
  7.     //int x;
  8.     //int y;
  9.     int x=23,y=7;
  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. }
複製代碼

作者: 鄧崴仁    時間: 2021-2-2 10:16

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x=23,y=7;

  7.     cout<<"當x的值為"<<x<<",Y的值為"<<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.     cout<<"x+y="<<x+y<<endl;  
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 陳仕約    時間: 2021-2-2 10:23

本帖最後由 陳仕約 於 2021-2-2 10:24 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    int x=23,y=7;
  7.    cout<<"當x的值為"<<x<<"'y的值為"<<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.    cout<<"x%y="<<x%y<<endl;
  13.    
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 洪曼崴    時間: 2021-2-2 10:24

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=23,y=7;
  7.    
  8.     cout<<"當X的值為"<<x<<",y的值為"<<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.     cout<<"x%y="<<x%y<<endl;
  14.    
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

作者: 吳亦勛    時間: 2021-2-2 10:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=,y=;
  7.    
  8.    
  9.     cout<<"當x值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  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.    
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 吳亦勛    時間: 2021-2-2 10:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x=,y=;
  7.    
  8.    
  9.     cout<<"當x值為"<<x<<",y的值為"<<y<<"時..."<<endl;
  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.    
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 莊念篪    時間: 2021-2-2 10:53

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x,y;
    cout<<"輸入x的值為";
    cin>>x;
    cout<<"輸入y的值為";
    cin>>y;
    cout<<"當x的值為"<<x<<",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;
}
作者: 陳建承    時間: 2021-2-2 10:56

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

作者: 王偉樺    時間: 2021-2-2 13:18

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x,y;
  7.     cout<<"請輸入x:";
  8.     cin>>x;
  9.     cout<<"請輸入y:  ";
  10.     cin>>y;
  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2