2896: 二维数组右上左下遍历 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int row,col; int a[150][150]; int i…… 题解列表 2023年05月20日 1 点赞 0 评论 358 浏览 评分:8.0
谁考了第k名java 摘要:import java.util.Scanner;public class 谁考了第k名 { public static void main(String[] args) { Sc…… 题解列表 2023年05月20日 0 点赞 0 评论 291 浏览 评分:9.9
2885: 矩阵转置 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年05月20日 0 点赞 0 评论 398 浏览 评分:0.0
2895: 反反复复 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,len,hang,lie,num=0; int i,j; …… 题解列表 2023年05月20日 0 点赞 1 评论 414 浏览 评分:9.9
编写题解 2912: 最长平台 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int findLongestPlateau(int arr[], int…… 题解列表 2023年05月20日 0 点赞 0 评论 388 浏览 评分:6.8
只能说,牛啊,要更加努力学习了 摘要:``详见代码即可 #include #include int main() { int f[1000]; int g[100…… 题解列表 2023年05月20日 0 点赞 0 评论 306 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:解题思路:偷懒一下,写一个函数注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string xh,nam…… 题解列表 2023年05月20日 0 点赞 0 评论 279 浏览 评分:0.0
编写题解 1043: [编程入门]三个数字的排序 摘要:参考代码:#include <iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a<=b &…… 题解列表 2023年05月20日 0 点赞 0 评论 340 浏览 评分:0.0
题解 1043: 三个数字的排序 摘要:解题思路:题目中要求把输入的3个数从小到大依次输出,那么我们就要先考虑有几种可能的顺序第一个数第二个数第三个数abccbbaccacabba共6种另外,说明一下,如果有n个数,共有 n!(即n的阶乘)…… 题解列表 2023年05月20日 0 点赞 1 评论 709 浏览 评分:9.9
感谢支持,谢谢你们的支持 摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a<…… 题解列表 2023年05月20日 0 点赞 0 评论 330 浏览 评分:6.0