1914: 蓝桥杯算法提高VIP-简单加法 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int i; int sum = 0; for (i = 1; i <= 1000; …… 题解列表 2022年12月26日 0 点赞 0 评论 223 浏览 评分:0.0
题解:2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int i, j; double sum; sum = 0; scanf("%d…… 题解列表 2022年12月26日 0 点赞 0 评论 164 浏览 评分:0.0
1231基础解法(Python) 摘要:解题思路:没啥思路注意事项:注意print()才是空一行,print('\n')是空两行参考代码:lst_rec = list(map(int, input().split()))fo…… 题解列表 2022年12月26日 0 点赞 0 评论 193 浏览 评分:0.0
编写题解 1087: A+B for Input-Output Practice (III) 摘要:解题思路:注意事项:参考代码:/*输入格式输入包含多个测试用例。每个测试用例包含一对整数 a 和 b,每行一对整数。包含 0 0 的测试用例将终止输入,并且不会处理此测试用例。 输出格式对于每对输入…… 题解列表 2022年12月26日 0 点赞 0 评论 97 浏览 评分:0.0
编写题解 1088: A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:/*输入格式输入包含多个测试用例。每个测试用例包含一对整数 a 和 b,每行一对整数。包含 0 0 的测试用例将终止输入,并且不会处理此测试用例。 输出格式对于每对输入…… 题解列表 2022年12月26日 0 点赞 0 评论 148 浏览 评分:0.0
编写题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a, i; int j, m; int sum = 0; int arr…… 题解列表 2022年12月26日 0 点赞 0 评论 109 浏览 评分:0.0
1092: A+B for Input-Output Practice 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a, i; int j, m; int sum = 0; int arr…… 题解列表 2022年12月26日 0 点赞 0 评论 149 浏览 评分:0.0
有规律的数列求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { float b=2,c=1,d,e,f=0; int a; scanf("%d",&a); for (floa…… 题解列表 2022年12月27日 0 点赞 0 评论 336 浏览 评分:0.0
最大公约数最小公倍数//辗转反除 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int a,b,c=1,d,e; scanf("%d%d",&a,&b); d=a*b; while(c!=0…… 题解列表 2022年12月27日 0 点赞 0 评论 135 浏览 评分:0.0
编写题解 1668: printf基础练习2(C语言) 摘要:解题思路:注意事项:%o表示八进制 %d表示十进制 %x表示十六进制参考代码:#include <stdio.h> int main () { int n; while (~scanf…… 题解列表 2022年12月27日 0 点赞 0 评论 313 浏览 评分:0.0