编写题解 1669: 求圆的面积 摘要:解题思路:导入math库,进行求面积之后,注意输出小数点后两位注意事项:导入math库参考代码:import matha = float(input())p = math.pis = a*a*ppri…… 题解列表 2022年06月16日 0 点赞 0 评论 647 浏览 评分:9.9
注意PI应该多往后去小数点哦 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define PI 3.14159int main(){ double r; scanf("%lf",&r); p…… 题解列表 2023年11月30日 0 点赞 0 评论 231 浏览 评分:9.9
求圆的面积 (C语言代码)我又又水了一题 摘要:解题思路:参考代码:#include<stdio.h> int main(){ float r; scanf("%f",&r); printf("%.2f",r*r*3.14159265…… 题解列表 2019年04月17日 0 点赞 0 评论 886 浏览 评分:9.9
1669: 求圆的面积 摘要:**题目描述:**题目很简单,已知半径r,求一个圆的面积是多大。 公式不用提了吧~~ **两个库函数:** //主要用于double类型的数据 double pow(double x, …… 题解列表 2024年07月14日 1 点赞 0 评论 266 浏览 评分:9.9
求圆的面积(超简C++) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; #include <iomanip> int main() { doub…… 题解列表 2022年10月29日 0 点赞 1 评论 472 浏览 评分:9.9