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