去掉双斜杠注释(模拟 + 换行标记) 摘要:解题思路:模拟 + 换行标记注意事项:参考代码:#include<iostream>#include<cmath>#include<cstring>us…… 题解列表 2025年02月02日 0 点赞 0 评论 136 浏览 评分:0.0
题解 1195: 去掉双斜杠注释 摘要:```cpp #include #include #include #include using namespace std; const string flagString="//"; …… 题解列表 2024年05月15日 0 点赞 0 评论 157 浏览 评分:9.9
去掉双斜杠注释(时间复杂度大点) 摘要:解题思路:注意事项:if(s[j][0]=='/'&&s[j][1]=='/') continue;这个要注意啊,开头双斜杠不换行,要不是提交就是错。参考代码:#i…… 题解列表 2023年06月28日 0 点赞 0 评论 160 浏览 评分:9.9
1195: 去掉双斜杠注释 摘要:```cpp #include using namespace std; int main() { string str1="//",str; int k; wh…… 题解列表 2022年12月30日 0 点赞 0 评论 221 浏览 评分:9.9
1195: 去掉双斜杠注释 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str1="//"; string…… 题解列表 2022年05月18日 0 点赞 0 评论 198 浏览 评分:0.0
去掉双斜杠注释-题解(C++代码)string之find函数 摘要:```cpp #include #include using namespace std; int main() { string str1="//"; string str; …… 题解列表 2020年10月20日 0 点赞 0 评论 645 浏览 评分:8.0
去掉双斜杠注释 (C++代码) 摘要:```cpp #include #include #include using namespace std; using namespace std; int main() { ch…… 题解列表 2019年11月24日 0 点赞 0 评论 1178 浏览 评分:0.0
去掉双斜杠注释-题解(C++代码) 摘要: 思路很简单,用gets读入一行,一个字符一个字符的判断,只要遇到两个//就跳出循环即可 **** #include #include #include …… 题解列表 2019年10月01日 0 点赞 0 评论 715 浏览 评分:9.9
去掉双斜杠注释 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include<cstring> #include<cstdio> #include<string> using nam…… 题解列表 2018年05月16日 0 点赞 0 评论 974 浏览 评分:0.0
melon瓜皮~承包1195题题解 摘要:解题思路:此题使用重定向,合理分情况解决,代码注释很清楚,不懂得或则不好的地方欢迎评论哦参考代码:#include <iostream> #include <cstdio> #include <c…… 题解列表 2018年03月23日 3 点赞 1 评论 490 浏览 评分:0.0