记录自己答案:1024 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],i,j,s1,s2; for(i=0;i<3;i++) { …… 题解列表 2022年10月11日 0 点赞 0 评论 61 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3]; int i,j,s=0,sum=0;//输入 for(i=0;i<3…… 题解列表 2017年10月24日 0 点赞 0 评论 658 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要: 解题思路:菜鸟一枚,在做了二十多道题之后,首次遇到迭代问题我是拒绝的,当我把题目做完后真的打开了我做迭代问题的思路。其实很简单,首先定义一个x0当做 x[n],定义一个x1当做x[n+1],然…… 题解列表 2018年01月26日 0 点赞 0 评论 666 浏览 评分:0.0
[编程入门]矩阵对角线求和 c语言 摘要:解题思路:注意事项:在计算sum1和sum2时,array中的下标是在同时变化,所以for循环是要并列运行的参考代码: #include<stdio.h> int main() { int row…… 题解列表 2021年07月20日 0 点赞 0 评论 140 浏览 评分:0.0
课后习题7.3 (C语言代码)边读边处理(简洁高效) 摘要:解题思路: 观察可得:正对角线元素的横纵坐标是相同的,反对角线的横纵坐标之和为2;通过着两个规律可以 在读入数组的时候就顺便判断并且把符合条件的值分别累加给两个变量;在…… 题解列表 2018年10月30日 0 点赞 0 评论 461 浏览 评分:0.0
编写题解 1024: [编程入门]矩阵对角线求 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月12日 0 点赞 0 评论 69 浏览 评分:0.0
[编程入门]矩阵对角线求和-题解(C语言代码) 摘要:```c #include int main() { int i,j,sum1=0,sum2=0,a[3][3];//注意sum1、sum2的初始值要是0;不然就会出错 fo…… 题解列表 2020年06月14日 0 点赞 0 评论 321 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题7.3 (C语言代码) 摘要:解题思路:#include <stdio.h>#include <stdlib.h>int main(){ int a[3][3],i,j; for(i=0;i<3;i++) …… 题解列表 2017年12月10日 0 点赞 0 评论 587 浏览 评分:0.0
旧物有情 # 手算法求矩阵对角线和 摘要:``` #include using namespace std; int main(){ int a[3][3]; for(int i=0; ia[i]…… 题解列表 2024年10月10日 0 点赞 0 评论 66 浏览 评分:0.0
[编程入门]矩阵对角线求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a[3][3]; for(int i=0…… 题解列表 2023年05月17日 0 点赞 0 评论 71 浏览 评分:0.0