You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-test/YUAN(2).cpp

16 lines
218 B

#include<iostream>
using namespace std;
int main()
{
const double pi=3.14;
double r,c,s;
cin>>r;
c=2.0*pi*r ;
s=pi*r*r;
cout<<c<<endl;
cout<<s<<endl;
return 0 ;
}