原題: 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 原碼: [cpp] #include <string.h> #include <stdio.h> int main() { char t[128] = {' '}; int i; while (gets(t + 1)) { for (i = 1 ; t[i] ; i++) putchar((isalpha(t[i]) && t[i-1] == ' ') ? toupper(t[i]) : t[i]); putchar('\n'); } return 0; }