编写题解 1195: 去掉双斜杠注释 摘要:解题思路:注意事项://用于保存真正的代码//多次输入,每次获取一行 //判断注释符"// //若注释符从下标0开始,则不保存,直接跳过 //反之,则保存//对保存的代码进行输出参考代码:#inclu…… 题解列表 2022年05月12日 0 点赞 0 评论 174 浏览 评分:0.0
1195: 去掉双斜杠注释 摘要:解题思路:注意事项:参考代码:while True: try: n=input() if n[0]=='/' and n[1]=='…… 题解列表 2022年02月19日 0 点赞 0 评论 248 浏览 评分:0.0
去掉双斜杠注释(模拟 + 换行标记) 摘要:解题思路:模拟 + 换行标记注意事项:参考代码:#include<iostream>#include<cmath>#include<cstring>us…… 题解列表 2025年02月02日 0 点赞 0 评论 139 浏览 评分:0.0
去掉双斜杠注释-题解(C语言代码) 摘要: #include int main(void) { int i = 0, j = 0; char c, a, b, s[1000000…… 题解列表 2020年03月28日 0 点赞 0 评论 384 浏览 评分:0.0
去掉双斜杠注释 (C++代码) 摘要:```cpp #include #include #include using namespace std; using namespace std; int main() { ch…… 题解列表 2019年11月24日 0 点赞 0 评论 1179 浏览 评分:0.0
去掉双斜杠注释-题解(C语言代码) 摘要:```cpp #include #include #include using namespace std; int main() { string s; int ta…… 题解列表 2019年11月11日 0 点赞 0 评论 574 浏览 评分:0.0
去掉双斜杠注释 (C++代码) 摘要:#include <bits/stdc++.h> using namespace std; int main() { string s[300]; int i=0,j,k,flag;…… 题解列表 2019年05月08日 0 点赞 0 评论 605 浏览 评分:0.0
去掉双斜杠注释 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include<cstring> #include<cstdio> #include<string> using nam…… 题解列表 2018年05月16日 0 点赞 0 评论 977 浏览 评分:0.0
去掉双斜杠注释 (Java代码)正则表达式 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]ages) { …… 题解列表 2018年04月15日 1 点赞 0 评论 1068 浏览 评分:0.0
melon瓜皮~承包1195题题解 摘要:解题思路:此题使用重定向,合理分情况解决,代码注释很清楚,不懂得或则不好的地方欢迎评论哦参考代码:#include <iostream> #include <cstdio> #include <c…… 题解列表 2018年03月23日 3 点赞 1 评论 491 浏览 评分:0.0