题解 | #首字母大写#

首字母大写

https://www.nowcoder.com/practice/91f9c70e7b6f4c0ab23744055632467a

#include<iostream>
#include<string>
using namespace std;
int main(){
	string str;
	while (getline(cin, str)){
		if ('a' <= str[0] && str[0] <= 'z'){
			str[0] = str[0] - 32;
		}
		for (int i = 1; i < str.size() - 1; i++){
			if ((str[i] == ' ' || str[i] == '\t' || str[i] == '\r' || str[i] == '\n') && 'a'<=str[i + 1]&&str[i+1]<='z'){
				str[i+1] = str[i+1] - 32;
			}
		}
		cout << str << endl;
	}
}

全部评论

相关推荐

11-24 00:11
已编辑
广东工业大学 算法工程师
避雷深圳&nbsp;&nbsp;yidao,试用期&nbsp;6&nbsp;个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务