华师一附中OI组
标题:
20210811汤小网课 圆和正方形
[打印本页]
作者:
admin
时间:
2021-8-11 11:15
标题:
20210811汤小网课 圆和正方形
1、周长为10的圆和正方形,谁的面积大。
2、面积为10的圆和正方形,谁的周长大。
作者:
admin
时间:
2021-8-11 11:15
#include <iostream>
using namespace std;
float r,c,a,sy,sz;
int main()
{
c=10;
r=c/3.14/2;
sy=3.14*r*r;
a=c/4;
sz=a*a;
if (sy>sz) cout<<"yuan";
else cout<<"zheng";
return 0;
}
复制代码
作者:
admin
时间:
2021-8-11 11:15
#include <iostream>
using namespace std;
float r,c,a,sy,sz;
int main()
{
c=10;
r=c/3.14/2;
sy=3.14*r*r;
a=c/4;
sz=a*a;
if (sy>sz) cout<<"yuan";
else cout<<"zheng";
return 0;
}
作者:
Discotry
时间:
2021-8-11 11:22
#include<iostream>
using namespace std;
int a,s;
float r,c;
int main()
{
r=10/2/3.14;
a=10/4;
s=a*a;
c=3.14*r*r;
if(a>c)
cout<<"正方形大";
else
cout<<"圆大";
return 0;
作者:
孙天佑
时间:
2021-8-11 11:56
#include <iostream>
using namespace std;
int ly,sz,b;
float r,sy;
int main(){
cin>>ly;
r=ly/3.14/2.00;
sy=r*r*3.14;
b=ly/4;
sz=b*b;
if (sy>sz) cout<<"圆";
else cout<<"正正";
return 0;
}
复制代码
作者:
张飓存
时间:
2021-8-11 11:57
#include<iostream>
using namespace std;
float c,r,a,x,y;
int main()
{
c=10;
r=c/3.14/2;
a=c/4.0;
x=3.14*r*r;
y=a*a;
if(x>y) cout<<"yuan";
else cout<<"zheng";
return 0;
}
#include<iostream>
#include<cmath>
using namespace std;
float s,r,a,x,y;
int main()
{
s=10.0;
r=sqrt(s/3.14);
a=sqrt(s);
x=3.14*2*r;
y=a*4;
if(x>y) cout<<"yuan";
else cout<<"zheng";
return 0;
}
作者:
xiaqixun
时间:
2021-8-11 12:17
1、周长为10的圆和正方形,谁的面积大。
#include <iostream>
using namespace std;
float c,r,sy,a,sz;
int main()
{
c=10;
r=c/3.14/2;
sy=3.14*r*r;
a=c/4;
sz=a*a;
if(sy>sz) cout<<"yuan";
else cout<<"zheng";
return 0;
}
作者:
郭怿涵
时间:
2021-8-11 13:23
#include<iostream>
using namespace std;
using namespace std;
float c,r,a,x,y;
int main()
{
c=10;
r=c/3.14/2;
a=c/4.0;
x=3.14*r*r;
y=a*a;
if(x>y) cout<<"yuan";
else cout<<"zheng";
return 0;
}
作者:
郭怿涵
时间:
2021-8-11 13:24
#include<iostream>
#include<cmath>
using namespace std;
float s,r,a,x,y;
int main()
{
s=10.0;
r=sqrt(s/3.14);
a=sqrt(s);
x=3.14*2*r;
y=a*4;
if(x>y) cout<<"yuan";
else cout<<"zheng";
return 0;
}
作者:
朱逸桐
时间:
2021-8-11 13:46
1
#include <iostream>
using namespace std;
float c,a,r,sz,sy;
int main()
{
c=10;
a=c/4;
sz=a*a;
r=10/2/3.14;
sy=3.14*r*r;
if (sy>sz) cout<<"yuan";
else cout<<"zheng";
return 0;
}
复制代码
作者:
朱逸桐
时间:
2021-8-11 13:48
2
#include <iostream>
#include <cmath>
using namespace std;
float s,a,r,cz,cy;
int main()
{
s=10;
a=sqrt(10);
cz=4*a;
r=sqrt(s/3.14);
cy=2*3.14*r;
if (cy>cz) cout<<"yuan";
else cout<<"zheng";
return 0;
}
复制代码
作者:
叶涵羽
时间:
2021-8-11 19:47
#include <iostream>
using namespace std;
float r,c,a,sy,sz;
int main()
{
c=10;
r=c/3.14/2;
sy=3.14*r*r;
a=c/4;
sz=a*a;
if (sy>sz) cout<<"圆";
else cout<<"正";
return 0;
}
作者:
kcy2011
时间:
2021-8-11 20:03
标题:
柯成远作业:面积为10的圆和正方形,谁的周长长?
本帖最后由 kcy2011 于 2021-8-11 20:18 编辑
#include <iostream>
#include <cmath>
using namespace std;
float r,cy,s,cz,a;
int main()
{
s=10;
a=sqrt(s);
r=sqrt(s/3.14);
cy=2*3.14*r;
cz=a*4;
if (cz>cy) cout<<"zheng";
else cout<<"yuan";
return 0;
}
作者:
kcy2011
时间:
2021-8-11 20:10
标题:
柯成远作业:周长等于10的圆和正方形,谁的面积大?
本帖最后由 kcy2011 于 2021-8-11 20:17 编辑
#include <iostream>
using namespace std;
float r,c,sy,a,sz;
int main()
{
c=10;
r=c/2/3.14;
sy=3.14*r*r;
a=c/4;
sz=a*a;
if (sz>sy) cout<<"zheng";
else cout<<"yuan";
return 0;
}
作者:
zhaiyucheng
时间:
2021-8-13 22:17
#include<iostream>
using namespace std;
int zheng;
float yuan;
int main()
{
zheng=(10/4.0)*(10/4.0);
yuan=(10/2/3.14)*(10/2/3,14)*3.14;
if(zheng>yuan) cout<<"zheng";
else cout<<"yuan";
return 0;
}
复制代码
#include<iostream>
using namespace std;
float yuan,zheng,a,r;
int main()
{
a=10/a;
r=10/3.14/r;
zheng=4*a;
yuan=2*3.14*r;
if(zheng<yuan) cout<<"zheng";
else cout<<"yuan";
return 0;
}
作者:
王林烽
时间:
2021-8-14 12:55
#include<iostream>
using namespace std;
float a,r,c,sy,sz;
int main()
{
c=10;
r=c/2/3.14;
sy=3.14*r*r;
a=c/4.0;
sz=a*a;
if(sy>sz) cout<<"圆形的面积大";
else cout<<"正方形面积大";
return 0;
}
作者:
王林烽
时间:
2021-8-14 13:08
本帖最后由 王林烽 于 2021-8-14 13:12 编辑
以下是闰年平年,请老师检查,谢谢!
#include<iostream>
using namespace std;
int a;
int main()
{
cin>>a;
if(a%4==0,a%400==0) cout<<"闰年";
else cout<<"平年";
return 0;
}
作者:
yinziqian
时间:
2021-8-14 15:06
面积谁大
#include <iostream>
using namespace std;
float sy,sz,c;
int main () {
cin>>c;
sy=c/3.14/2*c/3.14/2*3.14;
sz=c/4*c/4;
if (sy>sz) cout<<"圆大";
else cout<<"正方形大" ;
return 0;
}
作者:
李宸逸
时间:
2021-8-14 15:17
#include <iostream>
using namespace std;
float c,r,a,sy,sz;
int main()
{
c=10;
r=c/3.14/2;
a=c/4;
sy=3.14*r*r;
sz=a*a;
if (sy>sz)
cout<<"yuan";
else cout<<"zheng";
return 0;
}[code]#include <iostream>
using namespace std;
float s,r,a,cy,lz;
int main()
{
s=10;
r=s/3.14/r;
a=s/a;
cy=r*3.14*2;
lz=a*4;
if (cy<lz)
cout<<"yuan";
else cout<<"zheng";
return 0;
}
复制代码
[/code]
作者:
xiaqixun
时间:
2021-8-14 21:15
本帖最后由 xiaqixun 于 2021-8-14 21:32 编辑
2、面积为10的圆和正方形,谁的周长大。
#include <iostream>
using namespace std;
float r,a,ly,lz,s;
int main()
{
s=10;
r=s/3.14/r;
ly=3.14*2*r;
a=s/a;
lz=a*4;
if(ly>lz) cout<<"yuan";
else cout<<"zheng";
return 0;
}
作者:
田锦仁
时间:
2021-8-14 22:45
#include <iostream>
#include <cmath>
using namespace std;
//周长为10的 圆和正方形谁的面积大
double i;
double r;
double l;
double s1;
double s2;
int main()
{
cin>>i;
l=i/4;
s1=l*l;
r=i/3.14/2;
s2=3.14*r*r;
if(s1==s2)
{
cout<<"两个面积相等";
}else
{
if(s1>s2)
{
cout<<"正方形面积大";
}else
{
cout<<"圆的面积大";
}
}
return 0;
}
复制代码
作者:
604王泽逸
时间:
2021-8-15 08:56
#include<iostream>
using namespace std;
int a,b;
float c,d;
int main(){
cin>>a>>b;
a=b;
c=(a/4)*(a/4);
d=(b/3.14/2)*(b/3.14/2)*3.14;
if(c>d)cout<<"正";
else cout<<"圆";
}
作者:
田锦仁
时间:
2021-8-15 09:14
#include <iostream>
#include <cmath>
using namespace std;
//面积为10的圆和正方形,谁的周长大
double s;
double r;
double l;
double z1;
double z2;
int main()
{
cin>>s;
l=sqrt(s);
z1=4*l;
r=sqrt(s/3.14);
z2=3.14*2*r;
if(z1==z2)
{
cout<<"两个周长相等";
}else
{
if(z1>z2)
{
cout<<"正方形周长大";
}else
{
cout<<"圆的周长大";
}
}
return 0;
}
复制代码
[code]#include <iostream>
#include <cmath>
using namespace std;
//面积为10的圆和正方形,谁的周长大
double s;
double r;
double l;
double z1;
double z2;
int main()
{
cin>>s;
l=sqrt(s);
z1=4*l;
r=sqrt(s/3.14);
z2=3.14*2*r;
if(z1==z2)
{
cout<<"两个周长相等";
}else
{
if(z1>z2)
{
cout<<"正方形周长大";
}else
{
cout<<"圆的周长大";
}
}
return 0;
}
复制代码
[/code]
作者:
admin
时间:
2021-8-15 09:22
大家都做得很好!
作者:
Nick
时间:
2021-8-17 13:48
#include<iostream>
using namespace std;
int sz,sy;
float r,b;
int main()
{
r=10/2/3.14;
sy=r*r*3.14;
b=10/4;
sz=b*b;
if (sz<sy) cout<<"y is bigger than z";
else cout<<"z is bigger than y ";
return 0;
}
#include<iostream>
#include<cmath>
using namespace std;
float cz,cy;
int main()
{
cz=sqrt(10)*4;
cy=sqrt(10/3.14)*2*3.14;
if (cz>cy) cout<<"cz is bigger";
else cout<<"cy is bigger";
return 0;
}
复制代码
欢迎光临 华师一附中OI组 (http://hsyit.cn/)
Powered by Discuz! X3.2