1725: 统计字符 超简单做法 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ …… 题解列表 2024年12月07日 0 点赞 0 评论 34 浏览 评分:0.0
C语言训练-排序问题(2)C++使用sort排序 摘要:解题思路:自定义cmp,使sort()为降序函数注意事项:参考代码:#include<iostream>using namespace std;#include<algorithm&…… 题解列表 2024年12月07日 1 点赞 0 评论 63 浏览 评分:0.0
1072: 汽水瓶(简单易懂) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,…… 题解列表 2024年12月07日 1 点赞 0 评论 74 浏览 评分:10.0
3010: 奇偶数之和(使用到for循环语句) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(int argc, char *argv[]) { int n,i; …… 题解列表 2024年12月07日 0 点赞 0 评论 33 浏览 评分:0.0
2544:N以内累加求和(使用到for循环) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(int argc, char *argv[]) { int N,i; …… 题解列表 2024年12月07日 0 点赞 0 评论 57 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int sum(int n){ int sum = 0; for(int…… 题解列表 2024年12月07日 0 点赞 0 评论 95 浏览 评分:0.0
【超详细】判断高精度数字的奇偶性(C/C++) 摘要:解题思路:奇偶性只需要判断最后一位数字即可,所以我们的思路是:用一个字符串读入一个整数,之后把这个字符串最后面的字符数字转化为整形数字,然后判断这个数是偶数还是奇数就行。注意事项:有多组数据输入,不要…… 题解列表 2024年12月07日 0 点赞 0 评论 52 浏览 评分:9.9
蓝桥杯算法提高-快速排序C++ 摘要:解题思路:使用快速排序标准解答注意事项:参考代码:#include<iostream>using namespace std;const int MAX=1e5+10;int a[MAX]…… 题解列表 2024年12月07日 0 点赞 0 评论 23 浏览 评分:0.0
循环的嵌套 处理 输入与输出 摘要:解题思路:通过两层循环达到输入二维数组以及输出二维数组的效果,从而达到二维数组转置的效果。注意事项:在使用printf输出时,注意目标所需要的效果,即space,换行。参考代码:#include &l…… 题解列表 2024年12月08日 0 点赞 0 评论 117 浏览 评分:10.0
1123: C语言训练-列出最简真分数序列* 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; for(i = 1;i<40;i++) if (i == 1) { …… 题解列表 2024年12月08日 0 点赞 0 评论 59 浏览 评分:0.0