码迷,mamicode.com
首页 > 其他好文 > 详细

单词大小写

时间:2015-04-12 23:57:48      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

#include <stdio.h>
#include <string.h>
int main()
{
int t,i;
char a[100];
while(gets(a)!=NULL)

{
t=strlen(a);
for(i=0;i<t;i++)
{
if(i==0) a[i]=a[i]-32;
if(a[i]==‘ ‘) a[i+1]=a[i+1]-32;
}
for(i=0;i<t;i++)
{printf("%c",a[i]);}
printf("\n");}
return 0;
}

记住!=EOF只能用于整形循环  

单词大小写

标签:

原文地址:http://www.cnblogs.com/liuming1115/p/4420944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!