摘要: 1.编写程序判断n是正数还是负数。 #include<stdio.h> main() { float n; scanf("%f",&n); if(n>0) printf("正数!\n"); else if(n==0) printf("0既不是正数,也不是负数!\n"); else printf("负 阅读全文
posted @ 2021-10-29 17:22 山鹤唳 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1. #include<stdio.h> main() { int mark; printf("请输入学生的分数(0-100):\n"); scanf("%d",&mark); switch(mark/10) { case 10: //与case 9:共同用同一条语句 case 9:printf(" 阅读全文
posted @ 2021-10-29 17:19 山鹤唳 阅读(16) 评论(0) 推荐(0) 编辑