2005年春浙江省计算机等级考试二级C 编程题(3) (C++代码) 摘要:解题思路:注意事项:1.代码长是因为{}占行,养成良好编程习惯。2.数组长度没必要像其他人那样用100,用6就可以了。参考代码:#include <iostream>#include <cmath>u…… 题解列表 2018年02月08日 0 点赞 0 评论 859 浏览 评分: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 评论 546 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路: 把数据放进二维数组中,在二维数组中拿第一个作为最大值进行比较,得出更大的。把更大的值赋给max。用x,y记录坐标。循环结束就可以输出了。注意事项: 可以先输入,再比较。也可…… 题解列表 2018年01月17日 1 点赞 1 评论 285 浏览 评分: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 评论 565 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanner cin=n…… 题解列表 2017年12月26日 0 点赞 0 评论 979 浏览 评分: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 评论 630 浏览 评分: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 评论 1537 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言描述—高大上之利用二维指针生成二维数组) 摘要:解题思路:1.利用二维指针取生成二维数组;2. 申请行数个一维指针大小空间,并赋值给二维指针;3.对于每个一维指,申请列数个元素的空间,并赋值给对应的一维指针。注意事项:记得申请完毕要先后释放指针上的…… 题解列表 2017年11月24日 5 点赞 1 评论 1574 浏览 评分:8.4
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 评论 545 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3),复杂度最低的方法没有之一!!!!! 摘要:#include <stdio.h>#include <math.h>int main(){ int a[6][6]; int n; scanf("%d",&n); int i,j; int max=…… 题解列表 2017年08月19日 0 点赞 0 评论 932 浏览 评分:5.0