【杭電OJ】2026頭文字が大きくなる
1410 ワード
Problem Descriptionは英語の文を入力し、各単語の最初のアルファベットを大文字に変更します.
Input入力データには複数のテストインスタンスが含まれており、各テストインスタンスは100を超えない英語の文で、1行を占めています.
Outputは要求通りに書き換えた英語の文を出力してください.
Sample Input i like acm i want to get an accepted
Sample Output I Like Acm I Want To Get An Accepted
これは水の問題で、とても簡単で、ascll値を使います
Input入力データには複数のテストインスタンスが含まれており、各テストインスタンスは100を超えない英語の文で、1行を占めています.
Outputは要求通りに書き換えた英語の文を出力してください.
Sample Input i like acm i want to get an accepted
Sample Output I Like Acm I Want To Get An Accepted
これは水の問題で、とても簡単で、ascll値を使います
#include
#include
int main()
{
char a[100];
int len;
while (gets(a))
{
a[0] -= 32;
len = strlen(a);
for (int i = 1; i < len; i++)
{
if (a[i - 1] == ' ')
a[i] -= 32;
}
printf("%s
",a);
}
return 0;
}