大神老白-题解(C++代码) 摘要:```cpp #include #include using namespace std; #define N 10000 int main() { double n,a[N],sum…… 题解列表 2020年04月20日 0 点赞 0 评论 599 浏览 评分:6.0
蓝桥杯算法训练VIP-数的统计-题解(Java代码) 摘要:** import java.util.Arrays; import java.util.Scanner; public class 数的统计 { …… 题解列表 2020年04月20日 0 点赞 0 评论 599 浏览 评分:0.0
GC的苦恼-题解(Python代码) 摘要:```python while True: n=eval(input()) if 0…… 题解列表 2020年04月20日 0 点赞 0 评论 968 浏览 评分: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 评论 718 浏览 评分: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 评论 646 浏览 评分: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 评论 620 浏览 评分:0.0
[编程入门]链表合并-题解(C语言代码) 摘要:#include using namespace std; typedef struct stu { int m_num; int m_grade; stu* next; }s…… 题解列表 2020年04月20日 0 点赞 0 评论 1139 浏览 评分: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 评论 566 浏览 评分:0.0
字符串的输入输出处理-题解(C语言代码) 摘要:```cpp #include #include using namespace std; int main() { int n; cin>>n; getch…… 题解列表 2020年04月20日 0 点赞 0 评论 511 浏览 评分:0.0
C语言训练-亲密数-题解(C++代码)没能快速出结果的算法,都不是合格的算法。。。即使答案对了 摘要:```cpp #include using namespace std; int yinZiSum(int n); int main() { int sumA,sumB; i…… 题解列表 2020年04月20日 0 点赞 0 评论 707 浏览 评分:0.0