1388: GC的苦恼 摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) if 90<=num<=100: prin…… 题解列表 2021年12月24日 0 点赞 1 评论 275 浏览 评分:0.0
题解 1389: 程序员的表白(python代码) 摘要:while True: try: num = int(input()) for i in range(num):   题解列表 2021年12月24日 0 点赞 0 评论 847 浏览 评分:9.9
题解 1390: 大神老白(python) 摘要:while True: try: num=list(map(int,input().strip().split())) ls = num[1:] lt = [abs(i) for…… 题解列表 2021年12月24日 1 点赞 0 评论 372 浏览 评分:0.0
1131: C语言训练-斐波纳契数列 摘要:这里采用的是循环方案,也可以用递归。#include<bits/stdc++.h> using namespace std; int main(){ int n; cin …… 题解列表 2021年12月24日 0 点赞 0 评论 266 浏览 评分:0.0
最长单词------提供两种写法,第一种无法AC,第二种可AC 摘要:```cpp //1.我百思不得其解为什么这个AC不了 //#include //#include //using namespace std; //int main(void) //{…… 题解列表 2021年12月24日 0 点赞 0 评论 778 浏览 评分:9.3
栅格打印问题----两种写法,一种可AC,一种不可AC 摘要:```cpp //1.第一种为什么AC不了,无法理解 //#include //using namespace std; //int main(void) //{ // int a,b;…… 题解列表 2021年12月24日 0 点赞 0 评论 383 浏览 评分:9.9
2071: [STL训练]壮志难酬 摘要:用 find 函数找到小数点的位置,再加上往后移动的位数就是所求数字。#include<bits/stdc++.h> using namespace std; int main(){ …… 题解列表 2021年12月24日 0 点赞 0 评论 285 浏览 评分:0.0
2058: [STL训练]Who's in the Middle 摘要:把 n 个数先后压进向量,然后排序,最后直接用索引打印中位数。#include<bits/stdc++.h> using namespace std; int main(){ int…… 题解列表 2021年12月24日 0 点赞 0 评论 574 浏览 评分:9.9
自定义函数处理最大公约数与最小公倍数(初学者) 摘要:解题思路:定义两个函数注意事项:定义函数写在主函数之后时,需要提前声明函数,否则报错。参考代码:#include"stdio.h" int max,min;void funcA(int a,int b…… 题解列表 2021年12月24日 0 点赞 1 评论 299 浏览 评分:9.9
链表之节点删除—题解(c语言代码) 摘要:解题思路:利用数组来进行求解注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int m,n,i,j,a[1000],b[10…… 题解列表 2021年12月25日 0 点赞 0 评论 491 浏览 评分:9.9