GC的苦恼-题解(Python代码) 摘要:```python while True: n=eval(input()) if 0…… 题解列表 2020年04月20日 0 点赞 0 评论 1065 浏览 评分:0.0
陈教主的三角形-题解(Python代码) 摘要:```python while True: a,b,c=map(int,input().strip().split()) if(a+b>c and a+c>b and b+c>a…… 题解列表 2020年04月20日 0 点赞 0 评论 791 浏览 评分:2.0
妹子杀手的故事-题解(Python代码) 摘要:```python while True: a,b=map(int,input().strip().split()) if (a==0 and b==0): b…… 题解列表 2020年04月20日 0 点赞 0 评论 712 浏览 评分:0.0
程序员的表白-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; while(cin>>n){ for(int i=0;i…… 题解列表 2020年04月20日 0 点赞 0 评论 689 浏览 评分:0.0
[编程入门]链表合并-题解(C语言代码) 摘要:#include using namespace std; typedef struct stu { int m_num; int m_grade; stu* next; }s…… 题解列表 2020年04月20日 0 点赞 0 评论 1253 浏览 评分:6.0
蛇行矩阵-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n,sum=1,m=1; cin>>n; for(int i=1;i…… 题解列表 2020年04月20日 0 点赞 0 评论 631 浏览 评分:0.0
字符串的输入输出处理-题解(C语言代码) 摘要:```cpp #include #include using namespace std; int main() { int n; cin>>n; getch…… 题解列表 2020年04月20日 0 点赞 0 评论 562 浏览 评分:0.0
C语言训练-亲密数-题解(C++代码)没能快速出结果的算法,都不是合格的算法。。。即使答案对了 摘要:```cpp #include using namespace std; int yinZiSum(int n); int main() { int sumA,sumB; i…… 题解列表 2020年04月20日 0 点赞 0 评论 771 浏览 评分:0.0
53.最短路练习-题解(C++代码)只做最好的思路! 摘要:最短路问题是个经典的老问题了,一般有Dijkstra\Floyd\Spfa三种解法,具体不多阐述。。。时间长了,之前基础学的不咋地,所以碰到老问题又跪了。mmp...555.。。 在复习完基础知识后…… 题解列表 2020年04月20日 0 点赞 0 评论 698 浏览 评分:9.9
回文串-题解(C++代码) 摘要:```cpp 开头结尾一起判断 #include #include using namespace std; int main(int agrc, char const *arg…… 题解列表 2020年04月20日 0 点赞 0 评论 1196 浏览 评分:8.0