明明的随机数 摘要:解题思路:去重后的数组用Arrys.copyof方法存到数组中再利用插入排序,注意分清数组元素为止即可注意事项:参考代码:import java.util.Arrays;import java.uti…… 题解列表 2023年06月12日 0 点赞 0 评论 245 浏览 评分:0.0
C++ 矩阵转置 摘要:# 输出换个位置就行 ```c++ #include using namespace std; int nums[1000][1000]; int main() { int n…… 题解列表 2023年06月12日 0 点赞 0 评论 312 浏览 评分:0.0
循环入门练习6 摘要:#include<stdio.h> int main() { int n; scanf("%d", &n); for (int j = 1; j <= n; j++) { …… 题解列表 2023年06月13日 0 点赞 0 评论 258 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int compare(const void* a, const void* b){ int …… 题解列表 2023年06月13日 0 点赞 0 评论 317 浏览 评分:0.0
明明的随机数 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String [] args){ …… 题解列表 2023年06月13日 0 点赞 0 评论 304 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct patient{ char name[9]; float temperat…… 题解列表 2023年06月13日 0 点赞 0 评论 412 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int m,n,a[100]={0}, * b,i,j,flag,su…… 题解列表 2023年06月13日 0 点赞 0 评论 316 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m, i, j, k,a[100][100]; scanf("%d %d", &n, …… 题解列表 2023年06月14日 0 点赞 0 评论 249 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>struct student{ int id; int score;};int main()…… 题解列表 2023年06月14日 0 点赞 0 评论 310 浏览 评分:0.0
三个数的排序 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;import java.util.Arrays;public class Main { public st…… 题解列表 2023年06月14日 0 点赞 0 评论 251 浏览 评分:0.0