2005年春浙江省计算机等级考试二级C 编程题(3)-题解(C语言代码) 摘要:# include int main () { int i,a,b; for (a=-100;a…… 题解列表 2019年08月17日 0 点赞 0 评论 735 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3)-题解(C语言代码) 摘要:#include #include int main() { int n,a[100][100],i,j,max,maxi=1,maxj=1; scanf("%d",&n); for…… 题解列表 2019年06月15日 0 点赞 0 评论 352 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码)很简单啊 摘要:解题思路:按题模拟!注意事项:无参考代码:#include<stdio.h>#include<math.h>int main(){ int n; int a[6][6]; int i,j,mi,mj;…… 题解列表 2019年06月02日 0 点赞 0 评论 375 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,imax=0,jmax=0,max; scanf("%d",&n); int s[n][n]…… 题解列表 2019年05月31日 0 点赞 0 评论 264 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i,j,row,col; int max; int a[10][1…… 题解列表 2019年05月24日 0 点赞 0 评论 404 浏览 评分:0.0
不用数组存,直接通过编号输出下标 (C语言代码) 摘要:解题思路: 设矩阵大小为n*n,n[ i , j ]在矩阵中的编号为k,编号方法是从上到下、从左到右,且初始编号为0,例如:2*2的矩阵如下: 1 2 …… 题解列表 2019年05月17日 0 点赞 0 评论 455 浏览 评分:0.0
希望可以喜欢(C语言代码) 摘要:解题思路:二维数组、逻辑判断和嵌套for循环的运用注意事项:1、列标和行标需要初始化,否则当第一个数绝对值最大时输出的行标和列表不正确 2、数组地址从零开始,输出矩阵的位置时…… 题解列表 2019年05月16日 2 点赞 0 评论 814 浏览 评分:7.3
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[6][6],n,i,j,max,k,l; scanf("%d",&n); for(i=0;i<n;i…… 题解列表 2019年05月05日 0 点赞 0 评论 285 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i, j, a[6][6], b[6][6], k, t, …… 题解列表 2019年04月29日 0 点赞 0 评论 306 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args) { …… 题解列表 2019年03月26日 0 点赞 0 评论 265 浏览 评分:0.0