概述
c语言 字符串转大写的简单实例
复制代码 代码如下:
#include
#include
#include
#include
int main(void)
{
int length, i;
char string[20]= "this is a string";
length = strlen(string);
for (i=0; i
{
string[i] = toupper(string[i]);
}
printf("%sn",string);
system("pause");
return 0;
}
时间: 2013-12-10
C语言之实现字符串小写变大写的实例 输入字符串单词,将单词小写全部变为大写. #include #include #include using namespace std; int main() { vector ss; string s; while(cin>>s) ss.push_back(s); for(int i=0;i
描述 给定一个字符串,将其中所有的小写字母转换成大写字母. 输入 输入一行,包含一个字符串(长度不超过100,可能包含空格). 输出 输出转换后的字符串. 样例输入 helloworld123Ha 样例输出
最后
以上就是刻苦夕阳为你收集整理的c语言字符串转为大写,c语言 字符串转大写的简单实例的全部内容,希望文章能够帮你解决c语言字符串转为大写,c语言 字符串转大写的简单实例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复