1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,t; scanf("%d %d %d",&a,&b,&c); if…… 题解列表 2023年01月15日 0 点赞 0 评论 69 浏览 评分:0.0
冒泡法和遍历法 摘要:解题思路:注意事项:参考代码:方法一:冒泡法#include<stdio.h>int main(){ int i,j,n,a[10],temp; n=3; for(i=0;i<n;i++){ …… 题解列表 2023年03月24日 0 点赞 0 评论 105 浏览 评分:0.0