[编程入门]求和训练 摘要:```python a,b,c = map(int,input().split()) seq_a = [i for i in range(1,a+1)] seq_b = [i**2 for …… 题解列表 2022年01月22日 0 点赞 0 评论 341 浏览 评分:0.0
蚂蚁感冒 python 思路非常棒的一道题,编程即数学 摘要:解题思路:可以把碰头回头改为交叉带病,完全等价注意事项:参考代码:n=int(input())q=list(map(int,input().split()))x=q[0]num=1for i in r…… 题解列表 2022年01月23日 0 点赞 1 评论 407 浏览 评分:9.9
A+B from beiqiao(C++) 摘要:#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) //编译器…… 题解列表 2022年01月23日 0 点赞 0 评论 263 浏览 评分:0.0
A+B for Input-Output Practice (II) from beiqiao (C++) 摘要:for循环:#include<iostream> using namespace std; int main() { int a,b; int c; cin>>c;…… 题解列表 2022年01月23日 0 点赞 0 评论 258 浏览 评分:0.0
A+B for Input-Output Practice (III) from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int a,b; while((cin>>a>>b)&&!(a==0&…… 题解列表 2022年01月23日 0 点赞 0 评论 280 浏览 评分:0.0
python-质因数2 摘要:解题思路:注意事项:注意输入为质数时直接输出参考代码:from math import sqrt def Isprime(x): for i in range(…… 题解列表 2022年01月23日 0 点赞 0 评论 489 浏览 评分:0.0
A+B for Input-Output Practice (IV) from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int m; int n=0; int sum=0; …… 题解列表 2022年01月23日 0 点赞 0 评论 263 浏览 评分:0.0
A+B for Input-Output Practice (V) from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int m; int n=0; int sum=0; …… 题解列表 2022年01月23日 0 点赞 0 评论 226 浏览 评分:0.0
A+B for Input-Output Practice (VI) from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int m; int n=0; int sum=0; …… 题解列表 2022年01月23日 0 点赞 0 评论 289 浏览 评分:0.0
三个数最大值 from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int a,max; cin>>a>>max; if(max<a) …… 题解列表 2022年01月23日 0 点赞 0 评论 215 浏览 评分:0.0