description
對乙個字串的所有單詞,如果單詞的手寫字母不是大寫,則把首寫字母換成大寫字母。每個單詞之間用除字母以外的其他字元隔開。
input
輸入一行:待處理的字串,字串的長度小於等於80。
out輸出一行:經過處理以後的字串,字串的每個單詞的首寫字元大寫。
sample input
a boy likes a girl,but the girl does』 not like him.
sample output
a boy likes a girl,but the girl does not like him.
#includeint main()
把首寫字母大寫,其他的字母小寫
package stringmethod 把首寫字母大寫,其他的字母小寫 public class daxiao for int i 1 istring s2 string.valueof s0.charat i tolowercase 把除了第乙個字元以外的其他字元轉換成字串並進行小寫的轉換 st...
hduoj 2026 首寫字母變大寫
include include includeusing namespace std int main string str while getline cin,str int i 0 int len str.length if islower str 0 str 0 toupper str 0 f...
1125 小寫字母變為大寫字母
小寫字母變為大寫字母 time limit 2000ms memory limit 65536k total submit 225 accepted 171 description 寫乙個程式把乙個字串 可能含有空格,長度最長不超過1000 中的小寫字母轉化為大寫字母。input 輸入只有一行,可以...