题解 1129: C语言训练-排序问题 摘要:直接上代码!!!!!!!!!!!!!!!!!!!!!! ```cpp #include //万能头 using namespace std; bool cmp(int a,int b) { …… 题解列表 2023年05月06日 0 点赞 0 评论 548 浏览 评分:9.9
三种方法解排序(C语言) 摘要:解题思路:注意事项:参考代码:方法1:使用冒泡排序#include // 冒泡排序函数 void bubbleSort(int arr[], int n) { int temp; …… 题解列表 2023年11月19日 0 点赞 0 评论 576 浏览 评分:9.9
会1就看我这个,看我注释修改进行了 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() { int a[20]; int i, j, min, temp; for (i =…… 题解列表 2024年11月17日 0 点赞 0 评论 474 浏览 评分:9.9
一看就会,超详细,超级简单2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[10]; for(int i=0;i<10;i++){ scanf(&quo…… 题解列表 2025年11月22日 1 点赞 0 评论 279 浏览 评分:10.0