去掉双斜杠注释-题解(C++代码)string之find函数 摘要:```cpp #include #include using namespace std; int main() { string str1="//"; string str; …… 题解列表 2020年10月20日 0 点赞 0 评论 478 浏览 评分:8.0
去掉双斜杠注释-题解(Java代码) 25行 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2021年02月16日 0 点赞 0 评论 643 浏览 评分:7.3
1195: 去掉双斜杠注释 摘要:解题思路:注意事项:参考代码:while True: try: n=input() if n[0]=='/' and n[1]=='…… 题解列表 2022年02月19日 0 点赞 0 评论 163 浏览 评分:0.0
编写题解 1195: 去掉双斜杠注释 摘要:解题思路:注意事项://用于保存真正的代码//多次输入,每次获取一行 //判断注释符"// //若注释符从下标0开始,则不保存,直接跳过 //反之,则保存//对保存的代码进行输出参考代码:#inclu…… 题解列表 2022年05月12日 0 点赞 0 评论 108 浏览 评分:0.0
1195: 去掉双斜杠注释 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str1="//"; string…… 题解列表 2022年05月18日 0 点赞 0 评论 116 浏览 评分:0.0
思路很简单,实现非常简单 摘要: #include int main() { char arr[100][201] = { 0 };// 每行最多两百个字符再加上一个换行符(不要像我一样,在vs上写成arr[20][1…… 题解列表 2022年11月13日 0 点赞 0 评论 122 浏览 评分:0.0
1195基础解法(Python) 摘要:解题思路:主要还是找关系注意事项:去掉'\n'换行符更容易表示关系参考代码:import sysfor line in sys.stdin: line = line.strip(…… 题解列表 2022年11月18日 0 点赞 0 评论 158 浏览 评分:9.9
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