c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>struct student{ int id; int score;};int main()…… 题解列表 2023年06月14日 0 点赞 0 评论 353 浏览 评分: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 评论 279 浏览 评分: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 评论 361 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct patient{ char name[9]; float temperat…… 题解列表 2023年06月13日 0 点赞 0 评论 455 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num; float consume = 0; scanf("%d", &n); …… 题解列表 2023年06月13日 0 点赞 0 评论 468 浏览 评分:9.9
明明的随机数 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String [] args){ …… 题解列表 2023年06月13日 0 点赞 0 评论 361 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:1. 使用哈希表:可以使用哈希表来存储数组元素及其对应的索引,以减少查找的时间复杂度。在内层循环中,可以通过查询哈希表来找到与当前元素配对的另一个元素,而不需要遍历整个数组。2.排序数组:如…… 题解列表 2023年06月13日 0 点赞 0 评论 375 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int compare(const void* a, const void* b){ int …… 题解列表 2023年06月13日 0 点赞 0 评论 358 浏览 评分: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 评论 325 浏览 评分:0.0
C++ 冒泡排序+ 双指针去重 摘要:# C++ 冒泡排序+ 双指针去重 ```c++ #include "iostream" void Sort(int* nums, int n); int Deduplication(in…… 题解列表 2023年06月12日 0 点赞 0 评论 443 浏览 评分:6.0