2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double f,a,b,c,d…… 题解列表 2023年06月03日 0 点赞 0 评论 261 浏览 评分:0.0
不与最大值相同的数字之和 摘要:解题思路:注意事项:参考代码:public class Main { public static void main(String[] args) { Scanner sc = n…… 题解列表 2023年06月03日 0 点赞 0 评论 499 浏览 评分:0.0
#C++1745—— 继续畅通工程(带权并查集) 摘要:解题思路:找出有根节点的“家族”即还未畅通的“村庄群”,按权值排序后归并统计数量。注意事项:对于之前已经连接的道路,先预处理合并,再用cmp处理权值较小的边。AC代码:#include <iostre…… 题解列表 2023年06月02日 0 点赞 0 评论 348 浏览 评分:0.0
炒鸡简单(易懂) 摘要:解题思路:定义另一个数组来存放该数组的元音并输出注意事项:参考代码:#include<stdio.h>void line(char a[100]){ char b[100]; int i,…… 题解列表 2023年06月02日 0 点赞 0 评论 324 浏览 评分:9.9
编写题解 2920: 分数线划定 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct xs { int id; int mark;};struct xs x[5001];struct xs t;int mai…… 题解列表 2023年06月02日 0 点赞 0 评论 325 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,consume=0; char demand; scanf("%d %c",&m,…… 题解列表 2023年06月02日 0 点赞 0 评论 297 浏览 评分:0.0
编写题解 2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct student { int id; int yw, sx, yy; int sum;};struct student a[…… 题解列表 2023年06月02日 0 点赞 0 评论 383 浏览 评分:0.0
1328: 移动服务员 摘要:```cpp #include #include #include using namespace std; int f[2][210][210],p[1010],c[210][210],l…… 题解列表 2023年06月02日 0 点赞 0 评论 727 浏览 评分:9.9
1327: [NOIP2005]等价表达式 摘要:```cpp #include #include using namespace std; const int mod=10001; char w[51],c[51]; int a[100…… 题解列表 2023年06月02日 0 点赞 0 评论 474 浏览 评分:9.9
优质题解 2797: 最高的分数(C++STL)解题 摘要:###### 解题思路: 将所有的数据存储到数组中去,,使用sort函数对他们进行排序,然后再输出就可以啦 ###### 注意事项: 在使用sort函数前,先了解一下它吧 它是ST…… 题解列表 2023年06月02日 0 点赞 0 评论 1208 浏览 评分:9.9