字符逆序-题解(C++代码) by Zfans. 摘要:```cpp #include #include using namespace std; int main() { char c[100]; cin.getline(…… 题解列表 2019年07月19日 0 点赞 1 评论 407 浏览 评分:9.0
[递归]母牛的故事-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int a[56]; int main() { for (int i = 1; i year &…… 题解列表 2019年07月19日 0 点赞 0 评论 671 浏览 评分:0.0
Hello, world! (C++代码)by Zfans. 摘要:```cpp #include #include using namespace std; int main() { vector chr; int c; w…… 题解列表 2019年07月19日 0 点赞 0 评论 1048 浏览 评分:0.0
Hello, world! (C++代码)by Zfans. 摘要:```cpp #include using namespace std; int main() { int asc[100], i = 0; while (cin >> a…… 题解列表 2019年07月19日 0 点赞 0 评论 1076 浏览 评分:0.0
Minesweeper -题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int row, column; int n = 0; whi…… 题解列表 2019年07月19日 0 点赞 0 评论 638 浏览 评分:0.0
字符串的查找删除-题解(C++代码) 摘要:#include #include #include #include using namespace std; int main(void) { …… 题解列表 2019年07月19日 0 点赞 0 评论 1290 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑-题解(C++代码)(利用string里面的库函数) 摘要:#include #include #include using namespace std; int main(void) { string s,new_s; char big,sm…… 题解列表 2019年07月18日 0 点赞 0 评论 1814 浏览 评分:6.0
Minesweeper -题解(C++代码) 摘要:```cpp #include #include #include using namespace std; void chang2(char arr[1000][1000],int n…… 题解列表 2019年07月17日 0 点赞 0 评论 1000 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C++代码) 摘要://细节问题,注意以下就好,代码如下 #include using namespace std; struct student{ string studentNumber; strin…… 题解列表 2019年07月17日 0 点赞 0 评论 653 浏览 评分:0.0
[编程入门]自定义函数处理素数-题解(C++代码) 摘要:#### 原题链接:[自定义函数处理素数](https://www.dotcpp.com/oj/problem.php?id=1029 "自定义函数处理素数") 题目要求很简单 写一个函数判断素…… 题解列表 2019年07月17日 0 点赞 0 评论 1569 浏览 评分:7.3