梯形面积(无聊刷题) 摘要:解题思路: 没啥好说的 写不对就自杀吧注意事项: 参考代码:#include<iostream> using namespace std; const float sh=15,xia=25…… 题解列表 2023年07月31日 0 点赞 1 评论 639 浏览 评分:6.0
1232: 查找最大元素(C++) 摘要:AC代码: ```cpp #include #include #include using namespace std; int main() { string input…… 题解列表 2023年07月31日 0 点赞 0 评论 456 浏览 评分:9.9
电影票(无聊刷题) 摘要:解题思路:很简单 没啥好说的 写不对就自杀吧注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; …… 题解列表 2023年07月31日 0 点赞 0 评论 559 浏览 评分:9.9
牛吃牧草(六年级天天写) 摘要:解题思路:小学题目 你不能不会吧注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; c…… 题解列表 2023年07月31日 1 点赞 0 评论 1403 浏览 评分:4.7
1466: 蓝桥杯基础练习VIP-字符串对比(C++简单解) 摘要: ```cpp #include #include #include using namespace std; int checkRelation(const string& s…… 题解列表 2023年07月31日 0 点赞 0 评论 335 浏览 评分:9.9
自定义函数之整数处理(新手小白也能学会的编程) 摘要:解题思路:题目要求使用三个函数,1、输入可以直接用main函数。2、将其中最小的数与第一个数对换,把最大的数与最后一个数对换用自己的函数int F(int a[10])。3、用PR函数输出要求的结果。…… 题解列表 2023年07月31日 0 点赞 0 评论 382 浏览 评分:9.9
绝对值排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>void sort(int a[100],int len){ int…… 题解列表 2023年08月01日 0 点赞 0 评论 275 浏览 评分:0.0
最大公约数与最小公倍数(C语言) 摘要:解题思路: 利用定义法求解。注意事项: 不要使用中文输入法编写代码。参考代码:#include<stdio.h>int main(){ int m,n,i,j; int max = 0…… 题解列表 2023年08月01日 0 点赞 0 评论 313 浏览 评分:9.9
1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int b[4]={0,0,0,0}; char a[200]; for (int i = 0; i != 2…… 题解列表 2023年08月01日 0 点赞 0 评论 322 浏览 评分:0.0
题解 1028: [编程入门]自定义函数求一元二次方程 摘要:解题思路:三个函数,g1 g2 g3主函数进行判断注意事项:1,变量类型 double,输出三位小数2,#include<math.h>3,g3中的输出表示参考代码:#include<stdio.h>…… 题解列表 2023年08月01日 0 点赞 0 评论 304 浏览 评分:9.9