Hello, world!-题解(C++代码) 摘要:````cpp #include using namespace std; int main() { int n; string s; while(cin>>n) { c…… 题解列表 2020年04月12日 0 点赞 0 评论 774 浏览 评分:8.0
汪汪的诞生-题解(C++代码)(这题真就直接输出。。。别想太多。。。) 摘要:真就直接输出。。。题目要求的。。。  直接上代码: #include usi…… 题解列表 2020年04月12日 0 点赞 2 评论 456 浏览 评分:9.9
蓝桥杯算法提高VIP-Torry的困惑(提高型)-题解(Python代码) 摘要:找前100000个素数的时间已经优化到几秒了,还是通过不了,有没有大佬能指点一下还能这么优化 ` n = int(input()) import time start = time.…… 题解列表 2020年04月13日 0 点赞 1 评论 969 浏览 评分:9.9
C语言训练-邮票组合问题* (Python代码) 摘要:```python lis=[] for i in range(0,5): for j in range(0,4): if i*3+j*5 not in lis and…… 题解列表 2020年04月13日 0 点赞 0 评论 978 浏览 评分:0.0
[偶数求和]-题解(Python代码) 摘要:```python while True: n,m=map(int,input().split()) a=n//m sn=b=0 for i in range…… 题解列表 2020年04月13日 0 点赞 1 评论 964 浏览 评分:6.0
字符排列问题-题解(Python代码) 摘要:排列组合问题,n个数有n!种排列组合,题目要求非重,所以还要除以每个字符出现的次数 ```python n=int(input()) s=input() lis=[] sn=1 for i…… 题解列表 2020年04月13日 0 点赞 0 评论 739 浏览 评分:9.9
[编程入门]二维数组的转置-题解(C语言代码) 摘要:```c #include int main() { int zong = 0, heng = 0, a[3][3]; while (heng < 3&&zong…… 题解列表 2020年04月13日 0 点赞 0 评论 1248 浏览 评分:9.9
数列排序-题解(Python代码) 摘要:```python n=int(input()) for i in range(n): lis=list(map(int,input().split())) a=[] …… 题解列表 2020年04月13日 0 点赞 0 评论 794 浏览 评分:0.0
[编程入门]结构体之成绩记录 摘要:```c #include struct Student{ char num[10]; char name[10]; int score[3]; }s[100]; …… 题解列表 2020年04月13日 0 点赞 0 评论 1207 浏览 评分:8.0
[编程入门]自定义函数之字符串反转-题解(C语言代码) 摘要:```c #include int a[10000],n=0; int fun() { while ((a[n] = getchar()) != '\n') { if (a[n]…… 题解列表 2020年04月13日 0 点赞 0 评论 496 浏览 评分:0.0