题解列表

筛选

药房管理1+1=33333333333

摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int m,n,q,b=0;    cin>>m>……

题解: 药房管理

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int m,n,q,ans=0;    cin>>m……

感谢支持,谢谢你们的支持

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int k, a = 1, b = 1, c = 1;    ……

蓝桥杯算法提高VIP-队列操作

摘要:解题思路:理解好头指针front 和尾指针 rear 的位置即可当两个相等时 :队列为空当rear==数组长度减一时:队列为满计算队列大小即:尾指针减头指针注意事项:参考代码:import java.……

奖学金(利用结构体和sort)

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm>//利用sort排序  using namespace std; struct St……