编写题解 2751: 超级玛丽游戏 摘要:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" &…… 题解列表 2025年09月10日 0 点赞 0 评论 111 浏览 评分:0.0
编写题解 1866: 三位数反转 摘要:#include<bits/stdc++.h>using namespace std;int main(){ int i; …… 题解列表 2025年09月10日 0 点赞 0 评论 98 浏览 评分:0.0
利用vector定义数组大小,static_cast显式转换 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;#include <vector>int main(){ int n…… 题解列表 2025年09月10日 0 点赞 0 评论 71 浏览 评分:0.0
1123-列出最简真分数列表 摘要:代码:#include int main() { for (int i = 0; i …… 题解列表 2025年09月09日 0 点赞 0 评论 129 浏览 评分: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 评论 110 浏览 评分:0.0
1为真,0为假 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a, b, c, d; cin >> …… 题解列表 2025年09月08日 1 点赞 0 评论 103 浏览 评分:10.0
另一种解题思路 摘要:解题思路:阶梯计算,省去重复步骤注意事项:用goto防止重复计算参考代码:#include<iostream>using namespace std;int main(){ int a =…… 题解列表 2025年09月08日 0 点赞 0 评论 89 浏览 评分:0.0
1098: 陶陶摘苹果 摘要:解题思路:这题难度不大,欧耶注意事项:吃好喝好睡好参考代码:/*1098:陶陶能够摘到的苹果的数目**func:TaoPickingApples**intput:@height 陶陶的身高…… 题解列表 2025年09月08日 0 点赞 0 评论 63 浏览 评分:0.0
自定义函数之字符串反转 摘要:解题思路:这道题可以使用数组或者链表来做,我采用的循环链表的方式注意事项:参考代码:typedef struct LinkT{ int num; s…… 题解列表 2025年09月08日 0 点赞 0 评论 63 浏览 评分:0.0