新手求助
中间的代码if(a>='a'&&a<='z')
a=a-32;
的作用是什么?
#include<stdio.h>//参考成分较多,需要多看看
#include<string.h>
int main()
{
int lenthe;
char a;
while(gets(a))
{
lenthe=strlen(a);
if(a>='a'&&a<='z')
a=a-32;
for(int i=1;i<lenthe;i++)
{
if(a==' ')
a=a-32;
}
printf("%s\n",a);
}
return 0;
} 判断是否是小写字母,如果是就转换为大写字母,如果不是就不转换 题目描述:
输入一个英文句子,将每个单词的第一个字母改成大写字母。
Input
输入数据包含多个测试实例,每个测试实例是一个长度不超过100的英文句子,占一行。
Output
请输出按照要求改写后的英文句子。
Sample Input
i like acm
i want to get an accepted
Sample Output
I Like Acm
I Want To Get An Accepted
页:
[1]