题解 1195: 去掉双斜杠注释

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

思路很简单,实现非常简单

摘要: #include int main() { char arr[100][201] = { 0 };// 每行最多两百个字符再加上一个换行符(不要像我一样,在vs上写成arr[20][1……

1195: 去掉双斜杠注释

摘要:解题思路:注意事项:参考代码:while True:     try:         n=input()         if n[0]=='/' and n[1]==&#39……

1195: 去掉双斜杠注释

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string str1="//";    string……

melon瓜皮~承包1195题题解

摘要:解题思路:此题使用重定向,合理分情况解决,代码注释很清楚,不懂得或则不好的地方欢迎评论哦参考代码:#include <iostream> #include <cstdio> #include <c……