多维数组要知道下标索引是什么样的 摘要:解题思路:一般用一重循环也就可以啦注意事项:00 01 02 10 11 1220 21 22参考代码:import mathn=int(input())li=[]for i in range(n):…… 题解列表 2022年10月10日 0 点赞 0 评论 186 浏览 评分:2.0
救援(数学解题法) 摘要:解题思路:注意事项:注意有多个屋顶,时间需要累加参考代码:#include<stdio.h>#include<math.h>int main(){ int n,x,y,s; float l,t=0; …… 题解列表 2022年12月04日 0 点赞 0 评论 804 浏览 评分:9.9
救援——欢迎点评 摘要:解题思路:ceil函数是一个“向上取整”的函数,包含在math函数的头文件中。注意事项:神奇脑回路,地方的一次接着一次的去救的,不是一次性全救完的.........参考代码:#include<stdi…… 题解列表 2022年12月28日 0 点赞 0 评论 389 浏览 评分:9.9
题解 2811: 救援 摘要:解题思路:注意事项:参考代码:import math # 调用数学模块 t = 0 n = int(input()) #屋顶数 for i in range(n): a = …… 题解列表 2023年02月09日 0 点赞 0 评论 243 浏览 评分:6.0
2811: 救援(Python) 摘要:解题思路:注意事项:参考代码:from decimal import * n = int(input()) t0 = 0 while True: try: x,y,num=map(in…… 题解列表 2023年02月14日 0 点赞 0 评论 97 浏览 评分:0.0
C++简单易懂 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main() { int n, s; double …… 题解列表 2023年03月05日 0 点赞 0 评论 205 浏览 评分:9.9
救援C++ 简单易懂,欢迎点评 摘要:解题思路:注意事项: ceil()为向上取整函数参考代码:#include<bits/stdc++.h>#include<cmath>using namespace std;int main(){ …… 题解列表 2023年03月22日 0 点赞 0 评论 391 浏览 评分:7.7
2811:救援 笨办法求解 摘要:#include <iostream> #include <cmath> using namespace std; int main(){ int n; cin>>n; double…… 题解列表 2023年04月11日 0 点赞 0 评论 214 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; double sum_time = 0.0; s…… 题解列表 2023年05月30日 0 点赞 0 评论 127 浏览 评分:0.0
2811: 救援(C语言,重点就是向上取整用ceil()函数,不然的话就会报错) 摘要: #include #include int main() { int n; // 屋顶数 int x, y; // 坐标 int num; // 人数 …… 题解列表 2023年07月08日 0 点赞 0 评论 282 浏览 评分:9.9