T1138 将字符串中的小写字母转换成大写字母 (#Ⅰ- 5 - 3)

时间:2023-01-02 09:12:07

【题目描述】

给定一个字符串,将其中所有的小写字母转换成大写字母。

【输入】

输入一行,包含一个字符串(长度不超过100,可能包含空格)。

【输出】

输出转换后的字符串。

【输入样例】

helloworld123Ha

【输出样例】

HELLOWORLD123HA

【源程序】

#include<iostream>#include<cstdio>#include<cstring>using namespace std;int main(){	char a[256];	int len;	int i;			gets(a);	len=strlen(a);//计算字符串长度	for(i=0;i<len;i++)//小写转换为大写		if(a[i]>='a'&&a[i]<='z')			a[i]-=32;	puts(a);	return 0;}