返回列表 發帖

if else.. else if..

本帖最後由 歐柏罕 於 2017-11-18 16:24 編輯
  1. #include<iostream>   
  2. #include<cstdlib>   
  3. using namespace std;
  4. int main()
  5. {
  6.    int num1 = 0; //string
  7.    cout << "請輸入你的分數" << endl;
  8.    cin >> num1;   
  9.    
  10.    if(num1 <100 && num1 >= 60)  
  11.    {
  12.        cout << "你及格!" << endl;
  13.    }
  14.    else if(num1 == 100)//(條件)              num1 = 100      取代  =  vs ==  判斷是否一樣  if(判斷)
  15.    {
  16.         cout << "滿分" << endl;
  17.    }
  18.    else if(num1 >=0 && num1 <60)   //&& 同時成立  (AND)     || 其中一個成立就成立(OR)
  19.    {
  20.        cout << "你不及格" << endl;
  21.    }
  22.    else
  23.    {
  24.        cout << "輸入錯誤!" << endl;   
  25.    }
  26.    
  27.    
  28.    system("pause");
  29.    return 0;
  30. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表