C二级辅导-求偶数和-题解(C语言代码) 摘要: int main() { int a,b=0,c=0; scanf ("%d",&a); for (b=0;b…… 题解列表 2019年07月19日 0 点赞 0 评论 876 浏览 评分: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 评论 629 浏览 评分: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 评论 1068 浏览 评分: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 评论 1038 浏览 评分:0.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 评论 662 浏览 评分:0.0
字符串的输入输出处理-题解(C++代码) by Zfans. 摘要:```cpp #include #include #include using namespace std; int main() { int n; cin >> n…… 题解列表 2019年07月19日 0 点赞 0 评论 709 浏览 评分:0.0
The 3n + 1 problem -题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { long long begin, end; while (cin >>…… 题解列表 2019年07月19日 0 点赞 0 评论 427 浏览 评分:0.0
蛇行矩阵-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; int main() { int** a = new int* [100]; for (int …… 题解列表 2019年07月19日 0 点赞 0 评论 716 浏览 评分:0.0
[编程入门]矩阵对角线求和-题解(Java代码) 摘要:# 矩阵对角线求和【java代码+解释】 public static void main(String[]arg) { int[][]a=new int[3][3];//…… 题解列表 2019年07月19日 0 点赞 0 评论 1079 浏览 评分:0.0
Minesweeper -题解(C语言代码) 摘要:代码可能比较乱 但是完全实现了需要的功能 看他们的文章都是输入一个即输出一个,和我所想不符 我看题目要求的是先输入,等输入完成后同时输出所有结果(我也是用的机器翻译) 也算是提…… 题解列表 2019年07月19日 0 点赞 0 评论 986 浏览 评分:0.0