1. 程式人生 > >判斷成績優秀良好的c語言程式碼

判斷成績優秀良好的c語言程式碼

*******

#include <stdio.h>
#include <stdlib.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
/*趙巨集 2016.6.29日 杭州*/ 
int main(int argc, char *argv[]) 
{
	int score=67;
	if(score<100 && score>80)
	printf("你的成績為優秀!\n");
{
	if(score<=80 && score>60)
	printf("你的成績為良好!\n");
}
{
	if(score<60)
	printf("你的成績為不及格!\n");
}
	
	return 0;
}