2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:1、建立数组输入元素2、比较绝对值大小,做行列标记,记住绝对值最大元素的行列下表注意事项:1、变量一定要初始化2、max赋值的地方千万不要弄错了,不然输出一定不对参考代码:#include<…… 题解列表 2018年10月29日 1 点赞 0 评论 462 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C++代码) 摘要:解题思路:水一下,用C++的方法写的,没有什么难点。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n,…… 题解列表 2018年11月14日 0 点赞 0 评论 832 浏览 评分: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 评论 482 浏览 评分:0.0
动态二维数组! Vector向量等多种解法。(C/C++语言代码) 摘要:解题思路:C语言动态开辟二维数组注意事项:记得释放内存!参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> int mai…… 题解列表 2019年01月03日 1 点赞 0 评论 1085 浏览 评分: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 评论 834 浏览 评分:0.0
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 评论 432 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:/* 输入一个正整数n (1≤ n ≤6),再输入一个n 行n列的矩阵,找出该矩阵中绝对值最大的元素以及它的行下标和列下标。 */#include<stdio.h>int…… 题解列表 2019年01月31日 0 点赞 0 评论 893 浏览 评分: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 评论 607 浏览 评分: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 评论 513 浏览 评分: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 评论 668 浏览 评分:0.0