河岸柳 发表于 2021-10-1 09:37:38

新手求助

中间的代码
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;
}

jefferson0711 发表于 2021-10-1 09:37:39

判断是否是小写字母,如果是就转换为大写字母,如果不是就不转换

河岸柳 发表于 2021-10-1 10:01:17

题目描述:
输入一个英文句子,将每个单词的第一个字母改成大写字母。

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]
查看完整版本: 新手求助