hdu_problem_2026_頭文字が大文字になる
3706 ワード
/*
*
*Problem 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
*
*
*Author
*lcy
*
*
*Source
*C ( )
*
*
*Recommend
*lcy
*
*/
#include
#include
using namespace std;
int main() {
string s;
char x;
while (getline(cin, s)) {
s.at(0) -= 32;
for (int i = 1; i < s.size(); i++) {
if (s.at(i - 1) == ' ') s.at(i) -= 32;
}
cout << s << endl;
}
system("pause");
return 0;
}