本文主要是介绍HDU - 2026 首字母变大写(water),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Discription
输入一个英文句子,将每个单词的第一个字母改成大写字母。
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 <cstdio>
#include <iostream>
#include <algorithm>
#include <vector>
#include <cstring>
#include <string>
using namespace std;
char arr[111];
int main()
{while (gets(arr)){printf("%c", arr[0] - 32);for (int i = 1; i < strlen(arr); i++)if (arr[i] == ' ')printf(" %c", arr[++i] - 32);elseprintf("%c", arr[i]);printf("\n");}return 0;
}
这篇关于HDU - 2026 首字母变大写(water)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!