题解列表

筛选

奥运奖牌计数

摘要:解题思路: 1、先定义一个整型变量 用来表示天数,使用scanf函数输入天数&n……

s01串(cx12g)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,c; s="0&qu……

每个数的个数(cx12h)

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

2998: 电影票

摘要:解题思路:人数*10注意事项:需要输出空格。参考代码:#include<bits/stdc++.h>using namespace std;int main(){&……

结构体之时间设计

摘要:```#include using namespace std;struct Date { int day, month, year;};int main() {……