1727: 首字母大写 摘要:```cpp #include #include using namespace std; int main() { char A[100]; while(gets(A)…… 题解列表 2023年01月11日 0 点赞 0 评论 163 浏览 评分:9.9
原来不难,就只有第一个单词特殊啊 摘要:#include<bits/stdc++.h> using namespace std; int main() { string s; while(getline(cin,s)) {…… 题解列表 2024年08月08日 0 点赞 0 评论 71 浏览 评分:0.0
1727: 首字母大写 ! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义一个字符串变量s1,用于存储输入…… 题解列表 2024年12月08日 0 点赞 0 评论 59 浏览 评分:0.0