博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Word Capitalization
阅读量:5120 次
发布时间:2019-06-13

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

Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
   

Description

Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word.

Note, that during capitalization all the letters except the first one remains unchanged.

Input

A single line contains a non-empty word. This word consists of lowercase and uppercase English letters. The length of the word will not exceed 103.

Output

Output the given word after capitalization.

Sample Input

ApPLe
 
ApPLe
 
konjac
 
Konjac
 

很水的一道题,但是要注意if的条件范围和用什么比较

代码:

#include
#include
int main(){ char s[1001]; while(~scanf("%s",s)) { if(s[0]=='\0') break; else if(s[0]>='a'&&s[0]<='z') s[0]-=32; printf("%s\n",s); } return 0;}

 

转载于:https://www.cnblogs.com/lipching/p/3903965.html

你可能感兴趣的文章
Regular Experssion
查看>>
图论例题1——NOIP2015信息传递
查看>>
uCOS-II中的任务切换-图解多种任务调度时机与问题
查看>>
CocoaPods的安装和使用那些事(Xcode 7.2,iOS 9.2,Swift)
查看>>
Android 官方新手指导教程
查看>>
幸运转盘v1.0 【附视频】我的Android原创处女作,请支持!
查看>>
UseIIS
查看>>
集合体系
查看>>
vi命令提示:Terminal too wide
查看>>
引用 移植Linux到s3c2410上
查看>>
MySQL5.7开多实例指导
查看>>
[51nod] 1199 Money out of Thin Air #线段树+DFS序
查看>>
poj1201 查分约束系统
查看>>
Red and Black(poj-1979)
查看>>
分布式锁的思路以及实现分析
查看>>
腾讯元对象存储之文件删除
查看>>
jdk环境变量配置
查看>>
安装 Express
查看>>
包含列的索引:SQL Server索引的阶梯级别5
查看>>
myeclipse插件安装
查看>>