首页 > 编程 > C > 正文

C语言 字符串首字母转换成大写简单实例

2020-01-26 14:08:33
字体:
来源:转载
供稿:网友

C语言 字符串首字母转换成大写简单实例

举例:

输入:this is a book

返回:This Is A Book

#include<stdio.h> #include<stdlib.h> #include<string.h>  int main() {   char input[]="this is a book";   char output[256]={'/0'};   int i,len;   len=strlen(input);   printf("变换前的字符串为:%s/n",input);   for(i=0;i<len;i++)   {     if(input[0]!=' ')       input[0]-=32;     if(input[i]==' ')       input[i+1]-=32;     output[i]=input[i];   }   printf("变换后的字符串为:%s/n",output);   return 0; } 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选