去掉双斜杠注释-题解(C++代码)string之find函数 摘要:```cpp #include #include using namespace std; int main() { string str1="//"; string str; …… 题解列表 2020年10月20日 0 点赞 0 评论 478 浏览 评分:8.0
Manchester-【 去掉双斜杠注释】 摘要:#### 解题思路: 1. 输入每一行代码。 1. 遍历一行代码,输出其中“//”前面的字符。若“//”前面没有字符则什么也不做,否则输出字符后且换行。 1. 当遇到“//”时,结束本次遍历。 …… 题解列表 2020年04月16日 0 点赞 0 评论 617 浏览 评分:9.9
去掉双斜杠注释-题解(C语言代码) 摘要: #include int main(void) { int i = 0, j = 0; char c, a, b, s[1000000…… 题解列表 2020年03月28日 0 点赞 0 评论 287 浏览 评分:0.0
去掉双斜杠注释-题解(Python代码) 摘要:方法好像有点傻,现在是凌晨0:44,明早8点还有网课。所以就不思考更加简洁的方法了 ```python while True: string = input() if stri…… 题解列表 2020年03月24日 0 点赞 0 评论 571 浏览 评分:6.0
优质题解 去掉双斜杠注释-题解(C语言代码)(方便,简洁,易理解) 摘要:####1. 注意点 1.有空格的字符串输入 2.双斜杠的判断以及是否判断出某行有双斜杠是否去除 ####2. 解题思路 1.scanf函数和gets函数的使用: 1)输入规则…… 题解列表 2020年02月29日 0 点赞 0 评论 1678 浏览 评分:8.5
去掉双斜杠注释-题解(C语言代码)值得参考 摘要: #include #include int main() { char a[100][100]; int i,j,k,record; …… 题解列表 2019年11月30日 0 点赞 1 评论 844 浏览 评分:8.5
去掉双斜杠注释 (C++代码) 摘要:```cpp #include #include #include using namespace std; using namespace std; int main() { ch…… 题解列表 2019年11月24日 0 点赞 0 评论 1093 浏览 评分:0.0
去掉双斜杠注释-题解(C语言代码) 摘要:```cpp #include #include #include using namespace std; int main() { string s; int ta…… 题解列表 2019年11月11日 0 点赞 0 评论 443 浏览 评分:0.0
去掉双斜杠注释-题解(C++代码) 摘要: 思路很简单,用gets读入一行,一个字符一个字符的判断,只要遇到两个//就跳出循环即可 **** #include #include #include …… 题解列表 2019年10月01日 0 点赞 0 评论 533 浏览 评分:9.9
去掉双斜杠注释 (C++代码) 摘要:#include <bits/stdc++.h> using namespace std; int main() { string s[300]; int i=0,j,k,flag;…… 题解列表 2019年05月08日 0 点赞 0 评论 533 浏览 评分:0.0