大象喝水while循环 摘要:h,r= map(int, input().strip().split())Pi = 3.14159v = Pi * r * r * hn = 0while n * v <= 20000: &n…… 题解列表 2025年03月07日 0 点赞 0 评论 138 浏览 评分:0.0
C++简单解法 摘要:解题思路:此题属于简单题,需要知道向上取整的函数ceil(),其他的都是基础知识注意事项:参考代码:#include<iostream>#include<cmath>#defi…… 题解列表 2025年03月03日 0 点赞 0 评论 62 浏览 评分:10.0
大象喝水题解,,,, 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int h,r,t; double v; scanf("%d %d",&h,&r); …… 题解列表 2024年12月05日 0 点赞 0 评论 195 浏览 评分:0.0
三行秒杀大象喝水 摘要:解题思路:map函数接收输入注意事项:至少喝几桶水用向上取整参考代码:import mathh,r=map(int,input().split())print(math.ceil(20000/(h*m…… 题解列表 2024年11月30日 0 点赞 0 评论 216 浏览 评分:0.0
2771: 大象喝水(简单) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define PI 3.14159int main(){ int r,h; double sum=0,num=0; …… 题解列表 2024年11月04日 0 点赞 0 评论 135 浏览 评分:0.0
不骗人,新手必看!!!!!!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define PI 3.14159265358979323846int main() { int h, r; scanf…… 题解列表 2024年11月01日 0 点赞 0 评论 121 浏览 评分:6.0
高质量的大象喝水 摘要:解题思路:注意事项:ceil是在有小数的情况下向上取整参考代码:#include#define PI 3.14159265358979323846int main() { int h, r; …… 题解列表 2024年11月01日 0 点赞 0 评论 104 浏览 评分:6.0
大象喝水零基础题解 摘要:我们先敲出来C语言的基础框架#include <stdio.h>int main(){ return 0 ;}题目是说问大象喝几桶才能喝够20升同时输入的是cm,这两个很明显不是对应的关系,需要…… 题解列表 2024年08月31日 0 点赞 0 评论 222 浏览 评分:9.9
小白写代码,我懂你!! 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define PI 3.14159int main(){int r ,h;printf("please input r and h:…… 题解列表 2024年04月19日 0 点赞 0 评论 102 浏览 评分:0.0
编写题解 2771:大象喝水,python超简单 摘要:解题思路:注意事项:输出时舍去多余的0因为会估算参考代码:h,r = map(int,input().split()) #读取高度和半径 pi = 3.14159v_1 = pi * r ** 2…… 题解列表 2024年03月15日 0 点赞 0 评论 614 浏览 评分:6.0