成績顯示三個部份abc
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
float gread
printf("請輸入分數\n")
scanf("%f",&gread)
if(gread>=80&&gread<=100)
printf("成績為A\n")
else if(gread>=60&&gread<=79)
{
printf("成績為B\n")
}
else if(gread>=0&&gread<60)
{
printf("成績為C\n")
}
else
{
printf("分數輸入錯誤\n")
}
system("pause")
return 0
}
标签:
include
stdlib
float
gread
上传时间:
2014-01-15
上传用户:waizhang