2005年春浙江省计算机等级考试二级C 编程题(3) (C++代码) 摘要:解题思路:水一下,用C++的方法写的,没有什么难点。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n,…… 题解列表 2018年11月14日 0 点赞 0 评论 679 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:1、建立数组输入元素2、比较绝对值大小,做行列标记,记住绝对值最大元素的行列下表注意事项:1、变量一定要初始化2、max赋值的地方千万不要弄错了,不然输出一定不对参考代码:#include<…… 题解列表 2018年10月29日 1 点赞 0 评论 358 浏览 评分: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 评论 362 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C++代码) 摘要:解题思路:先进行矩阵的行和列的确定,运用了一个while循环,先确定了n的值,然后在进行对每个坐标的赋值,随便在其中找出最大值,并且确定行列坐标,注意事项:这里运用了头文件climits,来赋值tem…… 题解列表 2018年10月13日 0 点赞 0 评论 573 浏览 评分:0.0
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 评论 446 浏览 评分: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 评论 424 浏览 评分: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 评论 471 浏览 评分: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 评论 581 浏览 评分:0.0
请看此 (Java代码) 摘要:解题思路:首先,我认为题本身没错。注意事项:要学会电脑思维,却不能陷入电脑的思维无法自拔。此处要求的是输出行和列,勿误解参考代码:import java.util.Scanner; public c…… 题解列表 2018年05月23日 0 点赞 0 评论 511 浏览 评分: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 评论 486 浏览 评分:0.0