码迷,mamicode.com
首页 > 编程语言 > 详细

1165: 零起点学算法72——首字母变大写

时间:2017-04-09 23:14:02      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:return   gre   img   ble   search   puts   idt   ext   输入   

1165: 零起点学算法72——首字母变大写

Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lld
Submitted: 705  Accepted: 439
[Submit][Status][Web Board]

Description

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

 

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

 

Source

 
 1 #include<stdio.h>
 2 int main(){
 3     char a[100];
 4     while(gets(a)!=NULL){
 5         a[0]+=A-a;
 6         for(int i=1;a[i]!=\0;i++){
 7             if(a[i]== ) a[++i]+=A-a;
 8         }
 9         puts(a);
10     }
11     return 0;
12 }

 

1165: 零起点学算法72——首字母变大写

标签:return   gre   img   ble   search   puts   idt   ext   输入   

原文地址:http://www.cnblogs.com/dddddd/p/6686954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!