6 solutions
- 1
Information
- ID
- 844
- Time
- 1000ms
- Memory
- 256MiB
- Difficulty
- 1
- Tags
- (None)
- # Submissions
- 363
- Accepted
- 115
- Uploaded By
#include<bits/stdc++.h> using namespace std; int main() { double r; cin>>r; double d=2r; double c=23.14159r; double s=3.14159r*r; cout<<fixed<<setprecision(4)<<d<<" "<<c<<" "<<s;
}