Board logo

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

作者: 周政輝    時間: 2017-3-14 17:32     標題: 五則運算(ㄧ)

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

作者: 林峻安    時間: 2017-3-14 17:43

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

作者: 顏羽彤    時間: 2017-3-14 17:45

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

作者: 張凱婷    時間: 2017-3-14 17:45

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

作者: 巫沛庭    時間: 2017-3-14 17:46

#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;
}
作者: 巫晉宇    時間: 2017-3-14 17:47

#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;   
}
作者: 張閎鈞    時間: 2017-3-14 17:47

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





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