去掉双斜杠注释 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[500]; int i,j,k,flag; while(get…… 题解列表 2018年02月10日 0 点赞 0 评论 802 浏览 评分:0.0
去掉双斜杠注释(模拟 + 换行标记) 摘要:解题思路:模拟 + 换行标记注意事项:参考代码:#include<iostream>#include<cmath>#include<cstring>us…… 题解列表 2025年02月02日 0 点赞 0 评论 139 浏览 评分:0.0
思路很简单,实现非常简单 摘要: #include int main() { char arr[100][201] = { 0 };// 每行最多两百个字符再加上一个换行符(不要像我一样,在vs上写成arr[20][1…… 题解列表 2022年11月13日 0 点赞 0 评论 204 浏览 评分:0.0
1195: 去掉双斜杠注释 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string str1="//"; string…… 题解列表 2022年05月18日 0 点赞 0 评论 199 浏览 评分:0.0
编写题解 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
去掉双斜杠注释-题解(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