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