华师一附中OI组

标题: 面积为4的正方形和圆,那个的周长小? [打印本页]

作者: admin    时间: 2018-7-4 17:23
标题: 面积为4的正方形和圆,那个的周长小?
先求出面积为4的圆的周长,再求出正方形的周长,比较大小。
作者: 倚窗倾听风吹雨    时间: 2018-7-5 16:14
  1. #include<iostream>
  2. #include<cmath>
  3. using namespace std;
  4. const double PI=3.14159;
  5. double cy,cs,r,b;
  6. int main()
  7. {
  8.     r=sqrt(4/PI);
  9.     b=sqrt(4);
  10.     cy=2*PI*r;
  11.     cs=4*b;
  12.     if(cy<cs)cout<<"square";
  13.     if(cy==cs)cout<<"same";
  14.     if(cy>cs)cout<<"circle";
  15.     return 0;
  16. }
复制代码

作者: admin    时间: 2018-7-5 16:47
楼上同学好牛!
作者: 郑子川    时间: 2018-7-14 10:16
  1. #include<iostream>
  2. #include<cmath>
  3. using namespace std;
  4. float PI=3.14;
  5. double x,y,w,v;
  6. int main()
  7. {
  8.     w=sqrt(4/PI);
  9.     v=sqrt(4);
  10.     x=2*PI*w;
  11.     y=4*v;
  12.     if(x<y)cout<<"正方形的周长大";
  13.     if(x==y)cout<<"一样大";
  14.     if(x>y)cout<<"园的周长大";
  15.     return 0;
  16. }
复制代码

作者: admin    时间: 2019-3-23 11:07
楼上同学  请用代码的方式发帖




欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2