1090: A+B for Input-Output Practice (VI) 摘要:这题其实就是上两题改一下。。#include<bits/stdc++.h> using namespace std; int main(){ int m,a,sum; w…… 题解列表 2021年12月15日 0 点赞 0 评论 336 浏览 评分:0.0
1089: A+B for Input-Output Practice (V) 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int n,m,a,sum; cin >> n; …… 题解列表 2021年12月15日 0 点赞 0 评论 308 浏览 评分:0.0
编写题解 1031: [编程入门]自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int R(char a[],char b[]){ i…… 题解列表 2021年12月15日 0 点赞 0 评论 436 浏览 评分:0.0
1088: A+B for Input-Output Practice (IV) 摘要:#include<bits/stdc++.h> using namespace std; int main(){ int a,n; int sum; while…… 题解列表 2021年12月15日 0 点赞 0 评论 406 浏览 评分:9.9
1087: A+B for Input-Output Practice (III) 摘要:a 和 b 同时为 0 时跳出循环。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; w…… 题解列表 2021年12月15日 0 点赞 0 评论 261 浏览 评分:0.0
1086: A+B for Input-Output Practice (II) 摘要:无脑打印。#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; i…… 题解列表 2021年12月15日 0 点赞 0 评论 345 浏览 评分:0.0
1085: A+B for Input-Output Practice (I) 摘要:无脑打印,没啥可说的。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; while(ci…… 题解列表 2021年12月15日 0 点赞 0 评论 309 浏览 评分:0.0
蓝桥杯历届试题-数字游戏-题解(Java代码) 摘要:解题思路:注意事项:参考代码:package Test;import java.util.Scanner;public class Lq1443 {public static void main(St…… 题解列表 2021年12月15日 0 点赞 0 评论 915 浏览 评分:2.0
编写题解 1137: C语言训练-求函数值 摘要:解题思路:注意事项:参考代码:n =int(input())ls = [10]for i in range(n): ls.append(ls[-1]+2)print(ls[-2])…… 题解列表 2021年12月15日 0 点赞 0 评论 402 浏览 评分:0.0