2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i,j,row,col; int max; int a[10][1…… 题解列表 2019年05月24日 0 点赞 0 评论 404 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,imax=0,jmax=0,max; scanf("%d",&n); int s[n][n]…… 题解列表 2019年05月31日 0 点赞 0 评论 264 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码)很简单啊 摘要:解题思路:按题模拟!注意事项:无参考代码:#include<stdio.h>#include<math.h>int main(){ int n; int a[6][6]; int i,j,mi,mj;…… 题解列表 2019年06月02日 0 点赞 0 评论 375 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3)-题解(C语言代码) 摘要:#include #include int main() { int n,a[100][100],i,j,max,maxi=1,maxj=1; scanf("%d",&n); for…… 题解列表 2019年06月15日 0 点赞 0 评论 352 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3)-题解(C语言代码) 摘要:# include int main () { int i,a,b; for (a=-100;a…… 题解列表 2019年08月17日 0 点赞 0 评论 735 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:#注意要考虑负数的情况,所以要用的math的fabs #include #include int main() { int i, j, …… 题解列表 2019年11月12日 0 点赞 0 评论 297 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C++代码) 摘要: ```cpp #include #include using namespace std; int main() { int n; cin>>n; int a[n][…… 题解列表 2019年11月17日 0 点赞 0 评论 404 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:```c #include #include int main() { int n,i,j,max,maxi=0,maxj=0; int a[6][6] = { 0 }; scan…… 题解列表 2019年11月25日 0 点赞 0 评论 325 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C++代码) 摘要: ```cpp #include using namespace std; int main() { int arr_int[6][6]; int n_int; …… 题解列表 2019年11月29日 0 点赞 0 评论 318 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:```c #include int main() { int n,i; scanf("%d",&n); getchar(); int a[n][n]; int max_i=…… 题解列表 2019年12月02日 0 点赞 0 评论 692 浏览 评分:5.2