1669: 求圆的面积 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; #define PI 3.1415926 int main() { …… 题解列表 2023年09月22日 0 点赞 0 评论 393 浏览 评分:0.0
适合新手(简单题解) 摘要:参考代码:#include<stdio.h>#include<math.h>int main(){ float r; float a=3.14159; scanf("%f",&r);…… 题解列表 2023年10月16日 0 点赞 0 评论 437 浏览 评分:0.0
1669: 求圆的面积 摘要:解题思路:无注意事项:要用到3个“工具”。。。参考代码:#include<iostream>#include<iomanip>#define Pi 3.1615926usins namespace s…… 题解列表 2023年11月22日 0 点赞 0 评论 770 浏览 评分:0.0
求圆的面积+公式 摘要:解题思路:圆面积=π*r*r注意事项:r=圆的半径参考代码:#include<iostream>using namespace std;#include <iomanip>int main(){ …… 题解列表 2023年12月02日 0 点赞 0 评论 878 浏览 评分:0.0
简单易懂,求圆的面积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){double a,d;cin >> a;d=a*a*3.141…… 题解列表 2023年12月05日 0 点赞 0 评论 902 浏览 评分:0.0