主题:我不知道
/* HELLO.C -- Hello, world */
#include "stdio.h"
#include "conio.h"
main()
{
char a,b;
scanf("please input a word");
scanf("%c",&b);
a=b+32;
printf("a=%c\n",a);
getch();
}
这个程序编译成功后怎么不出现“please input a word"
#include "stdio.h"
#include "conio.h"
main()
{
char a,b;
scanf("please input a word");
scanf("%c",&b);
a=b+32;
printf("a=%c\n",a);
getch();
}
这个程序编译成功后怎么不出现“please input a word"