1507: 蓝桥杯算法提高VIP-去注释 摘要:解题思路:注意事项:参考代码:s=0 while True: try: st=input() if '/*' in st:   题解列表 2022年03月11日 0 点赞 0 评论 295 浏览 评分:8.0
一日一题 题解1507:蓝桥杯算法提高VIP-去注释 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){ int a,i=1,b,c; while ((a=getchar())!=EOF) …… 题解列表 2018年04月21日 11 点赞 0 评论 1186 浏览 评分:4.7
1507: 蓝桥杯算法提高VIP-去注释(c++) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; char s[1000000]; int main(){ char c,t; …… 题解列表 2022年04月08日 0 点赞 0 评论 148 浏览 评分:0.0
蓝桥杯算法提高VIP-去注释 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { char c; …… 题解列表 2019年04月02日 0 点赞 0 评论 306 浏览 评分:0.0
去注释-题解(C++代码) 摘要:这道题曾经难了我很久。。。 主要注意合理的对两种方式进行判断 并且一定要注意处理只有一个‘/’时的做法 比如单独出现的cout…… 题解列表 2021年02月01日 0 点赞 0 评论 330 浏览 评分:0.0
蓝桥杯算法提高VIP-去注释 C++ getline 做法 摘要:解题思路:我看题解都是用getchar的做法,因此发个不同的做法,丰富一下解题方式。注意事项:参考代码:#include<iostream> #include<string> using name…… 题解列表 2021年04月17日 0 点赞 0 评论 134 浏览 评分:0.0
蓝桥杯算法提高VIP-去注释-题解(C++代码)-修改 摘要:#include<iostream>using namespace std;int main(){ char c; while((c=cin.get())!=EOF){ if…… 题解列表 2022年02月27日 0 点赞 0 评论 106 浏览 评分:0.0
来自渣渣北的解法(C代码) 摘要:解题思路: 用一个数组来记录多个注释的起点和终点的区间,这样在最后输出结果时,只需要判断当前值是否在该区间内即可,若在则为注释部分,那么就不输出,反之输出。参考代码:#include <stdio.h…… 题解列表 2019年02月13日 0 点赞 0 评论 490 浏览 评分:0.0
蓝桥杯算法提高VIP-去注释-题解(C语言代码) 摘要:## 解题思路: 在c++的代码中注释有两种情况第一是//后面所在的一行都为注释,另一方面是由斜杠星号包裹的内容即为注释。利用while循环输入字符串。 从头开始遍历,如果出现//的字符,找到单行…… 题解列表 2020年07月13日 0 点赞 0 评论 302 浏览 评分:0.0
蓝桥杯算法提高VIP-去注释 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; char str[1000000]; in…… 题解列表 2019年03月20日 0 点赞 0 评论 524 浏览 评分:0.0