编写题解 1088: A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a; while(true){…… 题解列表 2022年03月19日 0 点赞 0 评论 337 浏览 评分:0.0
编写题解 1089: A+B for Input-Output Practice (V) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a; int m; ci…… 题解列表 2022年03月19日 0 点赞 0 评论 378 浏览 评分:0.0
编写题解 1090: A+B for Input-Output Practice (VI) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int a;while(cin>>n){ …… 题解列表 2022年03月19日 0 点赞 0 评论 309 浏览 评分:0.0
编写题解 1091: A+B for Input-Output Practice (VII) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; while(cin>>a>>b){ …… 题解列表 2022年03月19日 0 点赞 0 评论 326 浏览 评分:0.0
蓝桥杯2019年第十届国赛真题-最长子序列-pyhon写法 摘要: S = input() T = input() i = 0 j = 0 ans = [] #用于存储子序列 while i…… 题解列表 2022年03月19日 0 点赞 0 评论 438 浏览 评分:0.0
编写题解 1092: A+B for Input-Output Practice 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int m; cin>>m; while(m--){…… 题解列表 2022年03月19日 0 点赞 0 评论 321 浏览 评分:0.0
编写题解 1119: C语言训练-"水仙花数"问题1 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int back(int a){ int b,c,d; b = a%10; …… 题解列表 2022年03月19日 0 点赞 0 评论 378 浏览 评分:0.0
虽然复杂一点点 但是也很好理解 摘要:解题思路:将输入换成列表 由于题目中说明 只有一个缺失 一个重复 那么只要列表中该数据的数量为2那就是重复的,再用for语句遍历关于缺失的 应该注意用数列 从最小的开始到最大的 再令一个数从最小的开始…… 题解列表 2022年03月19日 0 点赞 0 评论 396 浏览 评分:0.0
蛇形矩阵的解题方法 摘要:解题思路:注意事项:参考代码:n = int(input()) # 一共 n 行x = 1 # 表示每一行的第一个数p = 2for i in range(1, n+1) : m = n …… 题解列表 2022年03月19日 0 点赞 0 评论 284 浏览 评分:0.0
c++ 常规解法 摘要:解题思路:因为是回文 只用考虑年份即可 且一年只有一个数先求出年份 然后根据年份判断月份是否满足要求 判断日期是否符合要求 如果符合就是回文日期注意事项:求得是当前日期之后的,不用考虑前面的日期。注意…… 题解列表 2022年03月19日 0 点赞 0 评论 517 浏览 评分:0.0