⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test1_10.txt

📁 linux under the C programming which complementary with the book of <linux under the C programming
💻 TXT
字号:
 /*根据所输入的成绩判断所处的等级*/
main()
{
	int score,grade;
        printf(“please inputn your score :  ”);
        scanf(“%d”,&score);
	if(score>=80)
            grade=1;
        else if(score>=60)
            grade=2;
        else  grade=3;
        switch(grade)
        {
		case 1: printf(“You are a perfect student !”);
            	case 2: printf(“Do not play so more !!”);
            	case 3: printf(“You must study harder !!!”);
   	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -