2071: [STL训练]壮志难酬 摘要:用 find 函数找到小数点的位置,再加上往后移动的位数就是所求数字。#include<bits/stdc++.h> using namespace std; int main(){ …… 题解列表 2021年12月24日 0 点赞 0 评论 260 浏览 评分:0.0
栅格打印问题----两种写法,一种可AC,一种不可AC 摘要:```cpp //1.第一种为什么AC不了,无法理解 //#include //using namespace std; //int main(void) //{ // int a,b;…… 题解列表 2021年12月24日 0 点赞 0 评论 348 浏览 评分:9.9
最长单词------提供两种写法,第一种无法AC,第二种可AC 摘要:```cpp //1.我百思不得其解为什么这个AC不了 //#include //#include //using namespace std; //int main(void) //{…… 题解列表 2021年12月24日 0 点赞 0 评论 731 浏览 评分:9.3
1131: C语言训练-斐波纳契数列 摘要:这里采用的是循环方案,也可以用递归。#include<bits/stdc++.h> using namespace std; int main(){ int n; cin …… 题解列表 2021年12月24日 0 点赞 0 评论 227 浏览 评分:0.0
题解 1390: 大神老白(python) 摘要:while True: try: num=list(map(int,input().strip().split())) ls = num[1:] lt = [abs(i) for…… 题解列表 2021年12月24日 1 点赞 0 评论 333 浏览 评分:0.0
题解 1389: 程序员的表白(python代码) 摘要:while True: try: num = int(input()) for i in range(num):   题解列表 2021年12月24日 0 点赞 0 评论 822 浏览 评分:9.9
1388: GC的苦恼 摘要:解题思路:注意事项:参考代码:while True: try: num = int(input()) if 90<=num<=100: prin…… 题解列表 2021年12月24日 0 点赞 1 评论 228 浏览 评分:0.0
陈教主的三角形 摘要:while True: try: ls = list(map(int,input().split())) ls.sort() a, 题解列表 2021年12月24日 0 点赞 0 评论 248 浏览 评分:0.0
妹子杀手的故事 摘要:while True: l,h = map(int,input().split()) if l == 0 and h == 0: break print…… 题解列表 2021年12月24日 0 点赞 0 评论 357 浏览 评分:0.0
1716: 数据结构-快速排序-C语言 摘要:```c //快速排序 #include #include void quicksort(int a[], int first, int end); int partition(in…… 题解列表 2021年12月24日 0 点赞 0 评论 745 浏览 评分:9.9