1915: 蓝桥杯算法提高VIP-三个整数的排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a, b, c, max, mid, min; &n…… 题解列表 2025年11月21日 0 点赞 0 评论 152 浏览 评分:0.0
题解 3326-易于理解:法一+法二 摘要:解题思路:可分为五个部分,复制到编译器会好看一点注意事项:参考代码:#include<bits/stdc++.h>//常用组合头文件usingnamespace…… 题解列表 2025年11月21日 1 点赞 0 评论 314 浏览 评分:0.0
[编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int arr[100]; int…… 题解列表 2025年11月21日 0 点赞 0 评论 459 浏览 评分:0.0
数据结构--链表的基本操作 摘要:解题思路:该咋写就咋写注意事项:该咋写就咋写参考代码://累死我了,写这么多代码好累啊,写了1个小时,我还是太菜了#include<iostream>#include<cstring…… 题解列表 2025年11月21日 0 点赞 0 评论 204 浏览 评分:0.0
编写题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int GongYueShu(int a,int b){ int temp; while(b!=0){ temp=a%b;…… 题解列表 2025年11月22日 1 点赞 0 评论 571 浏览 评分:0.0
c++最大和最小差值的两种方法 摘要:方法一:使用climits头文件定义最大数,不需要数组#include <iostream>#include <climits>//包含INT_MAX和INT_MIN#incl…… 题解列表 2025年11月22日 0 点赞 0 评论 180 浏览 评分:0.0
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long long Sn=0; long m=1; int n; scanf("…… 题解列表 2025年11月22日 0 点赞 0 评论 524 浏览 评分:0.0
编写题解 1017: [编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int get(int n,int facs[]){ if(n<6){ return 0; } int sum=0;…… 题解列表 2025年11月22日 0 点赞 0 评论 500 浏览 评分:0.0
编写题解 1018: [编程入门]有规律的数列求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float n=1.00,m=2.00; float sum=0.00; int N; scanf(…… 题解列表 2025年11月22日 1 点赞 0 评论 367 浏览 评分:0.0
题解 2012: 百分制成绩转换-只用了if、for、数组 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){ i…… 题解列表 2025年11月23日 0 点赞 0 评论 135 浏览 评分:0.0