2026——首字母变大写

来源:互联网 发布:如何成为网络平台老师 编辑:程序博客网 时间:2024/05/18 00:58
Problem Description
输入一个英文句子,将每个单词的第一个字母改成大写字母。
 

Input
输入数据包含多个测试实例,每个测试实例是一个长度不超过100的英文句子,占一行。
 

Output
请输出按照要求改写后的英文句子。
 

Sample Input
i like acmi want to get an accepted
 

Sample Output
I Like AcmI Want To Get An Accepted
 

#include <stdio.h>#include <string.h>main(){     int x,i;     char a[100];     while(gets(a)!=NULL)                                             //gets失败返回NULL      {          x=strlen(a);          a[0]-=32;          for(i=1;i<x;i++)              if(a[i]==' ')                  a[i+1]-=32;          puts(a);     }}

“an accepted”   ??!!
0 0
原创粉丝点击