校门外的树(c++) 摘要:解题思路:树是连续的可以用数组来存储,根据区间来遍历,更改数组状态。注意事项:用来存储树的数组需要比极限略微大一点的空间,否则会有段错误。参考代码:#include<bits/stdc++.h> #…… 题解列表 2023年12月10日 0 点赞 0 评论 489 浏览 评分:0.0
2919: 奖学金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int xh; int yv; …… 题解列表 2023年12月09日 0 点赞 0 评论 460 浏览 评分:9.9
2920: 分数线划定 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { string str; int…… 题解列表 2023年12月09日 0 点赞 0 评论 622 浏览 评分:9.9
1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;struct student{ char xuehao[10000]; …… 题解列表 2023年12月09日 0 点赞 0 评论 2135 浏览 评分:0.0
优质题解 题解 1051: [编程入门]结构体之成绩统计2 摘要:解题思路:阅读题目,我们可以发现,本题分为两个任务:一、计算三科分别的平均成绩。二、输出成绩最高的学生的信息。先来本题所需的主要知识点:结构体结构体的用处是定义一个“数据类型”。每个数据类型内包括各类…… 题解列表 2023年12月09日 165 点赞 0 评论 8511 浏览 评分:7.3
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;struct date{ int n,y,r;};int m[13]= {0…… 题解列表 2023年12月09日 0 点赞 0 评论 808 浏览 评分:0.0
1446: 蓝桥杯2013年第四届真题-核桃的数量 $$GCD(A,B)\timesLCM(A,B)=A\timesB$$```cpp#includeusingnamespacestd;//最大公约数intGCD(intnum1,intnum2){if(num1%num2==0)returnnum2;elsereturnGCD(num2, 题解列表 2023年12月09日 2 点赞 0 评论 618 浏览 评分:10.0
1866:三位数反转(C++) 摘要:解题思路:百位数为i/100;十位数为1/10-i/100*10;个位数为i-i/100*100-(i/10-i/100*10)*10注意事项:此题目含“有多组测试数据”则需要用循环结构参考代码:#i…… 题解列表 2023年12月09日 0 点赞 0 评论 640 浏览 评分:9.9
感觉不错的方法 摘要:解题思路:用布尔函数判断是否为素数注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a = 0; cin >>…… 题解列表 2023年12月09日 0 点赞 0 评论 544 浏览 评分:0.0
for循环简单解题 摘要:解题思路:注意事项:是s【f-1】,不是s【i-】哦!!!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ string s; …… 题解列表 2023年12月09日 0 点赞 0 评论 511 浏览 评分:9.9