1030: [编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; void transpose ( int a[][3] ) { for …… 题解列表 2022年10月09日 0 点赞 0 评论 271 浏览 评分:0.0
1027: [编程入门]自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int gcd ( int a, int b ) { int ans =…… 题解列表 2022年10月09日 0 点赞 0 评论 859 浏览 评分:0.0
1138: C语言训练-求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n = 0, m = 0, a[10]…… 题解列表 2022年10月09日 0 点赞 0 评论 240 浏览 评分:0.0
1024: [编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int a[9] = {0}, m = 0, …… 题解列表 2022年10月09日 0 点赞 0 评论 236 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int a[10] = {0}, i = 0;…… 题解列表 2022年10月09日 0 点赞 0 评论 237 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int main() { i…… 题解列表 2022年10月09日 0 点赞 0 评论 188 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int fun1(int m,int n){ int p; while(n!=0)…… 题解列表 2022年10月09日 0 点赞 0 评论 244 浏览 评分:0.0
1670: 拆分位数 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { int n = 0; cin >>…… 题解列表 2022年10月09日 0 点赞 0 评论 235 浏览 评分:0.0
1671: 小九九 摘要:解题思路:我偷懒了,面向结果编程注意事项:参考代码:#include <iostream> using namespace std; int main() { printf("1*…… 题解列表 2022年10月09日 0 点赞 0 评论 230 浏览 评分:0.0
1060: 二级C语言-同因查找 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main() { for (int i = 10; i <= 1…… 题解列表 2022年10月09日 0 点赞 0 评论 217 浏览 评分:0.0