标题:成绩的问题
只看楼主
alonefire
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2006-2-21
 问题点数:0 回复次数:2 
成绩的问题

/* Note:Your choice is C IDE */
#include "stdio.h"
main()
{
char a;
int b;
scanf("%d",&b);
if (b>=90)
a='A';
else if(80<=a<=89) a='B';
else if(70<=a<=79) a='C';
else if(60<=a<=69) a='D';
else if(0<=a<=59) a='E';
switch(a)
{
case'A':printf("A");break;
case'B':printf("B");break;
case'C':printf("C");break;
case'D':printf("D");break;
case'E':printf("E");break;
deafult:;
}
}

本人新手,请各位帮忙看看毛病在哪儿

搜索更多相关主题的帖子: include choice 
2006-02-21 20:07
aiyuheng
Rank: 1
等 级:新手上路
威 望:1
帖 子:656
专家分:0
注 册:2006-1-12
得分:0 
else if(80<=a&&a<=89) a='B';
the others are the same to it.

when i want to ask anyone,i will ask myself first.
2006-02-21 20:10
alonefire
Rank: 1
等 级:新手上路
帖 子:32
专家分:0
注 册:2006-2-21
得分:0 
谢谢

2006-02-21 20:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-46511-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.062761 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved