我初学C语言望各位前辈教教
我刚学的C想自己写个简单的,可是编译出来后不论我输入的数字是多少,printf 后面的都是you is ok谢谢各位了!衷心感谢!
#include<stdio.h>
main()
{
int myage,hscore;
hscore=18;
scanf("%d",myage);
if(myage>hscore)
{
printf("you is ok\n");
getch();
}
else
{
printf("you not\n");
}
}
警告 tt1.c 6: 可能在'myage'定义以前使用了它在 main 函数中
警告 tt1.c 7: 可能在'myage'定义以前使用了它在 main 函数中