[C] C語言入門 - 多層 IF Else 判斷運用

摘要:[C] C語言入門 - 多層 IF Else 判斷運用

[C] C語言入門 - 多層 IF Else 判斷運用

 

程式碼:

 


#include 
#include 
 
int main()
{
    scanf("%d", &x); // 分數計算
    if (x<0){
        printf("輸入錯誤");
    }
    else{
        if (x>100){
            printf("輸入錯誤");
        }
	else{
     	   if (x>=60){
      	      printf("及格");
    	    }
	   else{
      	      printf("不及格");
    	    }

	}
    }
    return 0;
}

 

#0xDe 從分享中學習

#Facebook:ProgrammerDe (https://www.facebook.com/MicrosoftDes) 有問題歡迎提問