C语言求,在线等急请编写程序,纠正录入的英文语句中出现的大小写拼写错误

输出
输出正确的书写形式
样例输入
hello,How are you.
样例输出
Hello,how are you.

第1个回答  2017-03-29

#include<stdio.h>
int main()
{
int i=1;
char s[100];
gets(s);
while(s[i]!='\0')
{
if(s[i]>='A'&&s[i]<='Z')
s[i]=s[i]+32;
i++;
}
puts(s);
return 0;
}

 有疑问欢迎私聊我

本回答被提问者和网友采纳
第2个回答  2017-03-29
and had to be left four or five
第3个回答  2017-03-29
1对2对3对4错5错
相似回答