2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#define N 7int main(){ char a[N][N]; int n,i,j,e,r; …… 题解列表 2018年08月31日 0 点赞 0 评论 457 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C++代码) 摘要:解题思路:先进行矩阵的行和列的确定,运用了一个while循环,先确定了n的值,然后在进行对每个坐标的赋值,随便在其中找出最大值,并且确定行列坐标,注意事项:这里运用了头文件climits,来赋值tem…… 题解列表 2018年10月13日 0 点赞 0 评论 588 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int n,i,j,max=0,maxi=0,maxj=0…… 题解列表 2018年10月22日 0 点赞 0 评论 391 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:1、建立数组输入元素2、比较绝对值大小,做行列标记,记住绝对值最大元素的行列下表注意事项:1、变量一定要初始化2、max赋值的地方千万不要弄错了,不然输出一定不对参考代码:#include<…… 题解列表 2018年10月29日 1 点赞 0 评论 380 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C++代码) 摘要:解题思路:水一下,用C++的方法写的,没有什么难点。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n,…… 题解列表 2018年11月14日 0 点赞 0 评论 709 浏览 评分: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 评论 334 浏览 评分:0.0
动态二维数组! Vector向量等多种解法。(C/C++语言代码) 摘要:解题思路:C语言动态开辟二维数组注意事项:记得释放内存!参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> int mai…… 题解列表 2019年01月03日 1 点赞 0 评论 1010 浏览 评分: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 评论 694 浏览 评分: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 评论 288 浏览 评分:0.0
非常工整,思路清晰的题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int num; scanf("%d",&num…… 题解列表 2019年01月20日 3 点赞 3 评论 1187 浏览 评分:8.9