2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:fabs_min 初始化为0,因为任何实数的绝对值>= 0.双重循环输入二维数组,同时完成记录当前绝对值最大的元素,以及行与列。注意事项:参考代码:#include<stdio.h> …… 题解列表 2019年03月16日 0 点赞 0 评论 372 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int a[6][6]; int n,max,t,b,c; scanf("%d",&n); for(int i…… 题解列表 2019年02月25日 0 点赞 0 评论 384 浏览 评分:0.0
。。最简单的方法。。2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码)(只有十行)。。。 摘要:解题思路:直接按照题意写。注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int n[6][6],m,l,i,j,x…… 题解列表 2019年02月15日 1 点赞 0 评论 424 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include<stdio.h>#include<math.h>int main(){ int i,j,hang=0,lie=0,n; scanf("%d",&n); double m[n][n];…… 题解列表 2019年02月14日 1 点赞 0 评论 315 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 输入一个正整数n (1≤ n ≤6),再输入一个n 行n列的矩阵,找出该矩阵中绝对值最大的元素以及它的行下标和列下标。 */#include<stdio.h>int…… 题解列表 2019年01月31日 0 点赞 0 评论 676 浏览 评分:0.0
非常工整,思路清晰的题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int num; scanf("%d",&num…… 题解列表 2019年01月20日 3 点赞 3 评论 1163 浏览 评分:8.9
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int map[6][6]; int i,j,n; int r,c,ma…… 题解列表 2019年01月18日 0 点赞 0 评论 236 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include<stdio.h> #include <stdlib.h> #include <math.h> int main() { int n,row,col; int **ma…… 题解列表 2019年01月03日 0 点赞 0 评论 655 浏览 评分:0.0
动态二维数组! Vector向量等多种解法。(C/C++语言代码) 摘要:解题思路:C语言动态开辟二维数组注意事项:记得释放内存!参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> int mai…… 题解列表 2019年01月03日 1 点赞 0 评论 994 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include<stdio.h> #include"math.h" int main() { int n,row,col,temp,matrix[6][6],i,j,max_elem…… 题解列表 2018年11月23日 0 点赞 0 评论 292 浏览 评分:0.0