Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
13193 祝易涛 求圆的周长和面积 C++ Accepted 2 MS 804 KB 190 2021-05-25 17:21:35

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { float r,c,s; cin>>r; c=r*2*3.1415; s=r*r*3.1415; printf("%.2f",c); cout<<endl; printf("%.2f",s); return 0; }