c语言字符串转为大写,c语言 字符串转大写的简单实例

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("%s\n",string);

system("pause");

return 0;

}

时间: 2013-12-10

6b5aa0751a6f1e6a9d0b665a02cc1f46.gif

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语言字符串转为大写)