2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路以及注意事项:本题主要联系二维数组的赋值以及使用,都需要嵌套for循环来实现。注意最后输出的行列数与数组的地址是有区别的。实例代码:#include<stdio.h> int main() …… 题解列表 2017年06月14日 7 点赞 8 评论 1542 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(int argc, char *argv[]) { int n, max…… 题解列表 2017年06月16日 1 点赞 0 评论 1885 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[20][20]; int i,j; int n; scanf("%d",&n); for(i=1;i…… 题解列表 2017年07月13日 0 点赞 0 评论 857 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,a,b,i,j; int num[10][10]={0}…… 题解列表 2017年08月27日 0 点赞 0 评论 660 浏览 评分:0.0
WU-2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:参考代码:#include<stdio.h> #include<math.h> int main() { int n,i,j,max,c,b,a[20][20]; scanf("%d",…… 题解列表 2017年12月14日 1 点赞 0 评论 1586 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int i,j,n,a[80][80],maxi,maxj,max…… 题解列表 2017年12月18日 0 点赞 0 评论 723 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int n,a,b,i=0,j=0, d[100][100],max;scanf("%d",&n);for(a=0…… 题解列表 2018年01月04日 0 点赞 0 评论 688 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路: 把数据放进二维数组中,在二维数组中拿第一个作为最大值进行比较,得出更大的。把更大的值赋给max。用x,y记录坐标。循环结束就可以输出了。注意事项: 可以先输入,再比较。也可…… 题解列表 2018年01月17日 1 点赞 1 评论 327 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i,j,a[7][7]={0},x,y; scanf("%d",&n…… 题解列表 2018年01月29日 0 点赞 0 评论 650 浏览 评分:0.0
【夏禾】题解1069:2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:O(n)的写法依次输入矩阵数字 找出最大的数及其对应的行和列注意事项:具体的行列获取需要仔细斟酌参考代码:#include<stdio.h>#include<stdlib.h>int mai…… 题解列表 2018年02月09日 2 点赞 0 评论 875 浏览 评分:0.0