博客
关于我
Problem F: 零起点学算法106——首字母变大写
阅读量:229 次
发布时间:2019-03-01

本文共 674 字,大约阅读时间需要 2 分钟。

Problem F: 零起点学算法106——首字母变大写

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

#include
#include
int main(void){
char a[100]; int i,k; while(gets(a)!=NULL) {
k=strlen(a); if(a[0]>='a'&&a[0]<='z') a[0]-=32; for(i=1;i
='a'&&a[0]<='z') {
a[i+1]-=32; } } } printf("%s",a); printf("\n"); } return 0;}

总结

1、strupr和strlwr函数是将字符串中的全部都变换,所以本题不能使用。

转载地址:http://iiux.baihongyu.com/

你可能感兴趣的文章
C. George and Job(k个长度为m的子序列和最值)
查看>>
【NOIP2012模拟8.7】找位置(暴力全排列)
查看>>
Xenia and Colorful Gems(思维+排列枚举+二分)
查看>>
A. No to Palindromes!(思维+模拟)
查看>>
D. Maximum Sum of Products(区间dp)
查看>>
Unity导出 Webgl托管报JavaScript 错误
查看>>
刷脸支付服务商铺天盖地地推广着设备
查看>>
刷脸支付时代的变革意味着个人命运的改变
查看>>
Pyramid of Glasses CodeForces - 676B (dp,模拟)
查看>>
n!最后K位 计蒜客 - 236(大整数模拟模板)
查看>>
安装visdom出现Downloading scripts, this may take a little while
查看>>
2019互联网公司100强
查看>>
HTTP状态码解析—— 200、404、503、403等
查看>>
Camtasia Studio2020最新软件更新V2020.0.1
查看>>
java语言中if结构 选择结构
查看>>
第一个Shell Script 程序
查看>>
Spring Data Redis缓存数据时,在redis服务器的Key前有特殊字符前缀解决方案
查看>>
2.18 补题记录
查看>>
2021-ICPD昆明站-I Mr. Main and Windmills
查看>>
limit的两种使用方式 && offset
查看>>