2005年春浙江省计算机等级考试二级C 编程题(3) (Java代码) 摘要:解题思路:注意事项:注意加一 即可 参考代码:import java.util.Scanner;public class Main { public static void main(Stri…… 题解列表 2018年04月15日 0 点赞 0 评论 882 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:双重循环,用数组表示矩阵,把最大值标记,不断更新注意事项:最后输出的时候一定要把标记值加一,因为数组下标从0开始参考代码:#include<stdio.h>#define MAX 10int…… 题解列表 2018年04月26日 0 点赞 0 评论 655 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:写了个二维数组,算是练练手吧注意事项:参考代码:#include<stdio.h> #include<malloc.h> int main() { int n; scanf("…… 题解列表 2018年04月27日 0 点赞 0 评论 700 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:无聊,写写结构体的注意事项:参考代码:#include<stdio.h> #include<malloc.h> struct Array_Two { int *array_two;…… 题解列表 2018年04月27日 0 点赞 0 评论 626 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> #define N 6 int main() { int m, a[N][N],…… 题解列表 2018年05月03日 0 点赞 0 评论 665 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:#include <stdio.h> #include <math.h> int main (void) { int n,i,j,k,h; int a[6][6]; int b[…… 题解列表 2018年05月15日 0 点赞 0 评论 545 浏览 评分:0.0
请看此 (Java代码) 摘要:解题思路:首先,我认为题本身没错。注意事项:要学会电脑思维,却不能陷入电脑的思维无法自拔。此处要求的是输出行和列,勿误解参考代码:import java.util.Scanner; public c…… 题解列表 2018年05月23日 0 点赞 0 评论 632 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i, j, c = 0, l = 0, max = 0; doub…… 题解列表 2018年07月15日 1 点赞 0 评论 748 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,a[10][10]; int i,j,maxi,ma…… 题解列表 2018年08月25日 0 点赞 0 评论 654 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){int n,i,k,t,max,a[80][80],j;scanf("%d\n",&n);for(i=0;i<n;i++)…… 题解列表 2018年08月27日 0 点赞 0 评论 608 浏览 评分:0.0