1740: 特殊排序 题目都不描述清楚!!! 摘要:解题思路:注意事项: 如果只有1个数则取出这个数输出-1如 &nb…… 题解列表 2024年12月08日 0 点赞 0 评论 22 浏览 评分:0.0
掌握反向迭代就行 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ &n…… 题解列表 2024年12月08日 0 点赞 0 评论 47 浏览 评分:0.0
1739: 成绩排序 sort+结构体 包看懂 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体xs,包含…… 题解列表 2024年12月08日 0 点赞 0 评论 29 浏览 评分:0.0
二级C语言-温度转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a[51];int b[51];int main(){ a[0]=-100; …… 题解列表 2024年12月08日 0 点赞 0 评论 114 浏览 评分:0.0
: 二级C语言-分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>double h(double x){ if(x<…… 题解列表 2024年12月08日 0 点赞 0 评论 130 浏览 评分:0.0
1728: 字符串的查找删除 来看看吧 万一看懂了呢 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; void f(string…… 题解列表 2024年12月08日 0 点赞 0 评论 27 浏览 评分:0.0
C语言 指针解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ int n=0 ; &n…… 题解列表 2024年12月08日 1 点赞 0 评论 85 浏览 评分:10.0
第k极值(C语言) 摘要:解题思路:1. cmp 函数: 这是一个用于比较两个整数大小的比较函数,用于 qsort 函数进行快速排序。它返回两个指针所指向的整…… 题解列表 2024年12月08日 0 点赞 0 评论 28 浏览 评分:0.0
金明的预算方案 摘要:解题思路:这段代码的详细解释1. Max 函数:这是一个用于比较两个长整型数并返回较大值的函数。2. main 函数:定义了多个长整…… 题解列表 2024年12月08日 0 点赞 0 评论 19 浏览 评分:0.0
迭代法求平方根 自定义函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double a[100];double h(double a[],double n){ int …… 题解列表 2024年12月08日 0 点赞 0 评论 174 浏览 评分:0.0