输入一个字符如是大写字母转换小写字母,否则不转换直接输出。
#include<stdio.h>int main()
{
char a;
printf("请输入一个字符:");
scanf("%c",&a);
if ('A'<=a&&a<='Z');
printf("%c\n",a+32);
else
printf("%c\n",a);
return 0;
}
这个是我写的老是提示有错误,,
错误代码:empty controlled statement found; is this the intent?
error C2181: illegal else without matching if
本人小白一个,刚刚开始学习c语言。希望和大家共同交流qq872312447