Cylinder-题解(C++代码)-----× 摘要:1、参照优质题解 链接:[https://blog.dotcpp.com/a/2608-1](https://blog.dotcpp.com/a/2608-1) ```cpp #include …… 题解列表 2020年04月15日 0 点赞 0 评论 403 浏览 评分:0.0
Cylinder最大圆柱体积 摘要:解题思路:pi的精度11位注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; const double pi = …… 题解列表 2024年08月10日 0 点赞 0 评论 338 浏览 评分:0.0
1111Cylinder(数学与语文的结合) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define PI 3.141592653589793//这道题考的是语文阅读理解吧?//首…… 题解列表 2024年06月08日 0 点赞 0 评论 105 浏览 评分:0.0
如果提交的答案为50分,可以提高一下pai的精度再试试 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2024年02月24日 0 点赞 0 评论 104 浏览 评分:0.0
Cylinder(C++代码) 摘要:解题思路:注意事项:1.double类型 2.w>0参考代码:#include <iostream>#define PI 3.141592653589793238#inc…… 题解列表 2022年02月02日 0 点赞 0 评论 406 浏览 评分:0.0
数学思路来解这一道题的 摘要:解题思路:注意事项:参考代码:import mathwhile True: w, h = map(int, input().split()) if w==0 or h==0: …… 题解列表 2021年12月07日 0 点赞 0 评论 278 浏览 评分:0.0
1111: Cylinder ,python版本 摘要:pi = 3.14159265358while True: try: w,h=map(int,input().strip().split()) if w == 0 and h == 0: …… 题解列表 2021年11月01日 0 点赞 1 评论 305 浏览 评分:0.0
Cylinder-题解(C语言代码) 摘要:#include <stdio.h> #define pi 3.14159265358 double volume(double w,double h) { double temp,r1=…… 题解列表 2020年07月21日 0 点赞 0 评论 237 浏览 评分:0.0
Cylinder-题解(C++代码) 摘要: ```cpp include #include #define PI 3.141592653589793238 using namespace std; int main() { d…… 题解列表 2020年01月06日 0 点赞 0 评论 650 浏览 评分:0.0
Cylinder (C语言代码) 摘要:解题思路:注意事项:参考代码:import java.text.DecimalFormat; import java.util.Scanner; public class Main { …… 题解列表 2019年02月16日 0 点赞 0 评论 712 浏览 评分:0.0