为什么下面的代码连接时提示unable to open include file ‘stdio.h’?
#include<stdio.h>main(){intscore;printf("enterascorefrom0to100:");scanf("%d",&score);...
#include <stdio.h>
main()
{
int score;
printf("enter a score from 0 to 100:");
scanf("%d",&score);
printf("the grade is:");
switch(score/10)
{case 10:
case 9: printf("%c\n",'A'); break;
case 8: printf("%c\n",'B'); break;
case 7: printf("%c\n",'C'); break;
case 6: printf("%c\n",'D'); break;
default:printf("%c\n",'E');
}
}
我用的是TC3.0! 展开
main()
{
int score;
printf("enter a score from 0 to 100:");
scanf("%d",&score);
printf("the grade is:");
switch(score/10)
{case 10:
case 9: printf("%c\n",'A'); break;
case 8: printf("%c\n",'B'); break;
case 7: printf("%c\n",'C'); break;
case 6: printf("%c\n",'D'); break;
default:printf("%c\n",'E');
}
}
我用的是TC3.0! 展开
4个回答
展开全部
在main()前面加上void,试一下;如果还不行,就在重新装一下TC,或者装一下c++。
追问
不行啊!
追答
程序本身是没有问题的,我咋这边已经试过了,可以运行;那就是你的编译器的问题了,建议重新装一次或者用vc++ 6.0重新试一下。。。
另一种可能就是你装的tc的路径可能不对,找不到头文件,比如说,你的tc装在了D盘,而tc默认的是C盘,所以,你要修改下,打开tc菜单里面options-> directories,修改到TC装在的那个目录下面。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询