2836: 数组逆序重放 摘要:#include<stdio.h>#include<math.h>int main(){ int n; scanf("%d",&n); int a[n]; for(int i …… 题解列表 2023年03月01日 0 点赞 0 评论 478 浏览 评分:0.0
题目 2171: 信息学奥赛一本通T1329-细胞 摘要:## **信息学奥赛一本通T1329-细胞** ### 题目描述 一矩形阵列由数字00到99组成,数字11到99代表细胞,细胞的定义为沿细胞数字上下左右还是细胞数字则为同一细胞,求给定矩形…… 题解列表 2023年03月01日 0 点赞 0 评论 518 浏览 评分:9.9
呢个大神看看为啥我这个有一个案例过不去 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double n,m; long long l; doubl…… 题解列表 2023年03月01日 0 点赞 0 评论 407 浏览 评分:0.0
3021: Pell数列 摘要: import java.util.*; public class Pell数列 { public static void main(String[] args) { Scanner s…… 题解列表 2023年03月01日 0 点赞 0 评论 518 浏览 评分:9.9
仅8行代码解决(Python) 摘要:解题思路:注意事项:参考代码:# 方法1-BFSdef bfs(queue): for i in queue:# python语言的特点:列表在遍历的过程中,不断给列表添加元素,遍历继续,直到没…… 题解列表 2023年03月01日 0 点赞 0 评论 430 浏览 评分:9.9
2839: 石头剪刀布 摘要:#include<stdio.h> #include<math.h> int main() { int n,na,nb; scanf("%d %d %d",&n,&na,…… 题解列表 2023年03月01日 0 点赞 0 评论 349 浏览 评分:0.0
题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double xa = 0; double ya = 0; double xb …… 题解列表 2023年03月01日 0 点赞 0 评论 434 浏览 评分:0.0
2023-3仅供自己回忆使用 摘要:#include<stdio.h>#include<math.h>int main(){ int i=2,n=2,Num=0,control=0; int th; scanf("%d…… 题解列表 2023年03月01日 0 点赞 0 评论 450 浏览 评分:0.0
题解 2772: 苹果和虫子 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, x, y; int a = 0; scanf("%d %d %d", &n, &x, &y); i…… 题解列表 2023年03月01日 0 点赞 0 评论 376 浏览 评分:0.0
使用循环打印行数可变的空心金字塔 摘要:行数可变,改num值即可。 ``` java public class Main { public static void main(String[] args) { i…… 题解列表 2023年03月01日 1 点赞 0 评论 450 浏览 评分:10.0