编写题解 2780: 奇偶数判断 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int i; …… 题解列表 2025年09月10日 0 点赞 0 评论 248 浏览 评分:10.0
编写题解 2779: 输出绝对值 摘要:#include<bits/stdc++.h>using namespace std;int main(){ double i; &nbs…… 题解列表 2025年09月10日 0 点赞 0 评论 220 浏览 评分:0.0
编写题解 2751: 超级玛丽游戏 摘要:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" &…… 题解列表 2025年09月10日 0 点赞 1 评论 269 浏览 评分:10.0
编写题解 1866: 三位数反转 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int i; …… 题解列表 2025年09月10日 0 点赞 0 评论 192 浏览 评分:0.0
利用vector定义数组大小,static_cast显式转换 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;#include <vector>int main(){ int n…… 题解列表 2025年09月10日 0 点赞 0 评论 122 浏览 评分:0.0
1123-列出最简真分数列表 摘要:代码:#include int main() { for (int i = 0; i …… 题解列表 2025年09月09日 0 点赞 0 评论 167 浏览 评分:0.0
使用gets不能使用fgets,原因:笔者认为第二个测试用例太长了,超过了一行,因此使用gets无限制读取,直到读到空格和回撤符号 摘要:#include<stdio.h>#include<string.h>#include<stdlib.h>int compare(const void *p1,co…… 题解列表 2025年09月08日 0 点赞 0 评论 150 浏览 评分:0.0
1为真,0为假 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a, b, c, d; cin >> …… 题解列表 2025年09月08日 1 点赞 0 评论 150 浏览 评分:10.0
另一种解题思路 摘要:解题思路:阶梯计算,省去重复步骤注意事项:用goto防止重复计算参考代码:#include<iostream>using namespace std;int main(){ int a =…… 题解列表 2025年09月08日 0 点赞 0 评论 170 浏览 评分:0.0
1098: 陶陶摘苹果 摘要:解题思路:这题难度不大,欧耶注意事项:吃好喝好睡好参考代码:/*1098:陶陶能够摘到的苹果的数目**func:TaoPickingApples**intput:@height 陶陶的身高…… 题解列表 2025年09月08日 0 点赞 0 评论 147 浏览 评分:0.0