Run ID:19606
提交时间:2021-11-16 16:12:01
#include <bits/stdc++.h> using namespace std; int main() { float r,c,s; cin>>r; c=2*r*3.1415; s=r*r*3.1415; printf("%.2f",c); cout<<endl; printf("%.2f",s); return 0; }