题解列表
编写题解 1169: 绝对值排序
摘要:```c++
#include
#include
#include
using namespace std;
int main()
{
int nums[100] = {0};……
033: [编程入门]自定义函数之字符提取
摘要:```c
#include
#include
using namespace std;
int main() {
string str;
getline(cin……
1319: 没有上司的晚会
摘要:```cpp
#include
#include
using namespace std;
const int maxn=6001;
int n,dp[maxn][2],hap[maxn];……
2233: 蓝桥杯算法训练-图形显示(c++代码)
摘要:解题思路:通过倒序循环来完成“*”和“ ”的输出;注意事项:空格和换行不要忘了哦参考代码:#include<iostream>using namespace std;int main(){ in……
1029题 : 自定义函数处理素数
摘要:# 自己写的代码
```c
#include
int main()
{
int SuShu_Panduan();
int N,i=2;
scanf("%d",&……
1028题: 自定义函数求一元二次方程
摘要:# 自己写的代码
这道题不会,还是涉及主函数调用,另外关于二次函数的求解也不会用表达式表示
# 参考代码1
```c
#include
#include
DAYL(float a, flo……
1027题:自定义函数处理最大公约数与最小公倍数
摘要:# 自己写的代码
自己没有写出来,主要对于主函数调用无从下手
# 参考代码1
```c
#include
int main(void)
{
int a,b,c=1,j; ……