C语言问题!高手帮忙!!

请高手帮我编写个程序,从键盘上敲入一小写字母,将其转换成大写字母输出!
请问一下
#include <"stdio.h">
#include <"ctype.h" >
是否这个地方有无括号?
是不是有无都没关系?

#include "stdio.h"
#include "ctype.h"
int main()
{
char ch;
printf("Enter a character, please: ");
scanf("%c",&ch);
if(isalpha(ch))printf("%c",toupper(ch));
else
printf("Enter a character, please.");

return 0;
}
//可以看的懂吧,
不对,要么
#include "stdio.h"
#include "ctype.h"

要么
#include <stdio.h>
#include <ctype.h>
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答
大家正在搜