入门小白


私信TA

用户名:Lhc1024

访问量:5571

签 名:

等  级
排  名 5324
经  验 1558
参赛次数 1
文章发表 8
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

这道题有个隐藏的坑就是你输入的字符串会有空格,所以处理输入输出的时候要注意

参考代码:

#include<bits/stdc++.h> 
using namespace std;
int main()
{
	char str[100];
	gets(str);
	for(int i=0;i<strlen(str);i++)
	{
		if(str[i]>='A'&&str[i]<='Z')
		str[i]=str[i]+32;
	}
	cout<<str;
	return 0; 
}


 

0.0分

0 人评分

  评论区

  • «
  • »