返回列表 發帖

五則運算(三)

  1. #include<iostream> // <-基本輸出輸入的函式庫 Input Output   cin 輸入 cout 輸出  
  2. #include<cstdlib> //主要的函式庫 Library
  3. using namespace std;
  4. int main()
  5. {
  6.     int x; int y;
  7.     cout << "兩數的五則運算" <<endl;
  8.     cout << "請輸入x的值:" <<endl;
  9.     cin >> x;
  10.     cout << "請輸入y的值:" <<endl;
  11.     cin >> y;
  12.    
  13.     // 1 true 0 false
  14.     if(y==0)//判斷條件是否符合  if內的判斷式如果成立就做括號內的事
  15.     {
  16.         cout << "y的值不可以為0 請重新輸入!" << endl;
  17.     }
  18.     else{ //如果不成立 就做else內括號的事
  19.          cout << "x+y=" << x+y << endl;
  20.          cout << "x-y=" << x-y << endl;
  21.          cout << "x*y=" << x*y << endl;
  22.          cout << "x/y=" << x/y << endl;
  23.          cout << "x%y=" << x%y << endl;
  24.     }
  25.    

  26.     system("pause");  
  27.     return 0;  
  28. }
複製代碼

回復 1# 周政輝

TOP

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

  4. int main()
  5. {
  6.     int m;int n;
  7.     cout<<"輸入m的值:\r\n";
  8.     cin>>m;
  9.     cout<<"輸入n的值:\r\n";
  10.     cin>>n;
  11.    
  12.     if(n==0)
  13.     {
  14.     cout<<"y值不能為0,重新輸入!!\r\n";        
  15.     }
  16.     else
  17.     {
  18.          cout<<"m+n="<<m+n<<endl;
  19.     cout<<"m-n="<<m-n<<endl;
  20.     cout<<"m*n="<<m*n<<endl;
  21.     cout<<"m/n="<<m/n<<endl;
  22.     cout<<"m%n="<<m%n<<endl;
  23.     }
  24.    
  25.    
  26.    
  27.    
  28.    
  29.     system("pause");
  30.     return 0;   
  31. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int x;int y;
    cout<<"兩數的五則運算"<<endl;
    cout<<"請輸入x的值:"<<endl;
     cin>>x ;
    cout<<"請輸入y的值:"<<endl;
    cin>>y;
    if(y==0)
    {
     cout<<"y不可為0,請重新輸入!"<<endl;      
    }
    else{
         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.     cout<<"兩數的五則運算"<<endl;
  7.     int x;
  8.     int y;
  9.     cout<<"請輸入x的值"<<endl;
  10.     cin>>x;
  11.     cout<<"請輸入y的值"<<endl;
  12.     cin>>y;
  13.     if(y==0)
  14.     {
  15.     cout<<"y值不可為0 請重新輸入!"<<endl;
  16.     }
  17.     else
  18.     {cout<<"x+y="<<x+y<<endl;
  19.     cout<<"x-y="<<x-y<<endl;
  20.     cout<<"x*y="<<x*y<<endl;
  21.     cout<<"x/y="<<x/y<<endl;
  22.     cout<<"x%y="<<x%y<<endl;
  23.     }
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x; int y;
  7.     cout<<"x"<<endl;
  8.     cin>>x;
  9.     cout<<"y"<<endl;
  10.     cin>>y;
  11.    
  12.     if(y==0)
  13.     {
  14.      cout<<"y的質不可為0"<<endl;
  15.       
  16.       }
  17.       else{
  18.    
  19.     cout<<"x+y="<<x+y;
  20.     cout<<"x-y="<<x-y;
  21.     cout<<"x*y="<<x*y;
  22.     cout<<"x/y="<<x/y;
  23.     cout<<"x%y="<<x%y;
  24. }
  25.    
  26.    
  27.    
  28.      system("pause");
  29.       return 0;   
  30.    
  31.    
  32. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   
   
    int x;int y;
    cout<<"兩數的五則運算"<<endl;
    cout<<"x"<<endl;
    cin>>x;
    cout<<"y"<<endl;
    cin>>y;
   
    if(y==0)
    {
     cout<<"請重新輸入" <<endl;   
    }
    else{
    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;int n;
  7.     cout<<"輸入m的值:\r\n";
  8.     cin>>m;
  9.     cout<<"輸入n的值:\r\n";
  10.     cin>>n;
  11.    
  12.     if(n==0)
  13.     {
  14.     cout<<"y值不能為0,重新輸入!!\r\n";        
  15.     }
  16.     else
  17.     {
  18.          cout<<"m+n="<<m+n<<endl;
  19.     cout<<"m-n="<<m-n<<endl;
  20.     cout<<"m*n="<<m*n<<endl;
  21.     cout<<"m/n="<<m/n<<endl;
  22.     cout<<"m%n="<<m%n<<endl;
  23.     }
  24.    
  25.    
  26.    
  27.    
  28.    
  29.     system("pause");
  30.     return 0;   
  31. }
複製代碼

TOP

返回列表