hdu2026 首字母变大写

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
 
许多已经封装好的函数能够让编程变得大为简便。通过这道题,我又了解了一个函数:toupper,该函数可以将小写字母转化为大写字母,使用这个函数的时候,需要头文件:#include

代码:
#include
#include
#include
#include
#include

using namespace std;
int main(){
	char s[109];
	while(gets(s))
       {
		int n=strlen(s);
		s[0]=toupper(s[0]);
		for(int i=1;i


你可能感兴趣的:(ACM算法——水题)