汽水瓶(c++纯代码) 摘要:```cpp #include using namespace std; int qishui(int w) { int m=w/3,n=w%3,x,y,sum=0; wh…… 题解列表 2022年08月17日 0 点赞 0 评论 261 浏览 评分:9.9
弟弟的作业 摘要:```c #include int main() { int a,b,c,k,count=0; char x; while(~(k=scanf("%d%c%d=%d…… 题解列表 2022年08月17日 0 点赞 0 评论 613 浏览 评分:9.9
1074: 数字整除 摘要:```cpp #include #include using namespace std; int main() { char m[1050]; int h; …… 题解列表 2022年08月17日 0 点赞 0 评论 362 浏览 评分:9.9
蓝桥杯2022年第十三届省赛真题-重新排序(贪心,差分数组) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N = 1e5 + 5…… 题解列表 2022年08月18日 0 点赞 0 评论 1005 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:解题思路:... ... ... ... ... ... ... ... ... ...注意事项:无参考代码:#include<iostream>using namespace std;int mai…… 题解列表 2022年08月18日 0 点赞 0 评论 522 浏览 评分:9.9
[编程入门]数字逆序输出 摘要:解题思路:简单暴力注意事项:参考代码:int main(){ int a, b,c,d,e,f,g,h,i,j ; scanf("%d %d %d %d %d %d %d %d %d %d", &a,…… 题解列表 2022年08月18日 0 点赞 0 评论 364 浏览 评分:9.9
题目 1050: [编程入门]结构体之成绩记录 摘要:```cpp #include #include using namespace std; int n; struct node { string a, b; in…… 题解列表 2022年08月18日 0 点赞 0 评论 448 浏览 评分:9.9
编写题解 1035: [编程入门]自定义函数之字符类型统计 摘要:```c //自定义函数之字符类型统计 #include #include void StrStatic(){ char s[200]; gets(s);//接受输入的字符串,并保…… 题解列表 2022年08月18日 0 点赞 0 评论 371 浏览 评分:9.9
Minesweeper(留个记录) 摘要:解题思路:注意事项:字符输入—scanf(" %c")(空格可换成\n \t),单个字符读取,可忽略掉空格、换行参考代码:#include <stdio.h> //查找周围雷的数量 int min…… 题解列表 2022年08月19日 0 点赞 0 评论 291 浏览 评分:9.9
无论在官网还是在这儿,都是100分 摘要:解题思路:简单的思维题注意事项:这一题之所以会出现标答超时,是因为有一组数据是第一行什么都没有,第二行才有一个数字(因为我氪金了,能看数据集)。用scanf("%s",str)的方法可以完美解决这种问…… 题解列表 2022年08月19日 0 点赞 0 评论 448 浏览 评分:9.9