Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
12204 徐一喆 求圆的周长和面积 C++ Accepted 1 MS 808 KB 149 2021-05-20 11:59:42

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; double r; int main() { cin>>r; printf("%.2lf\n%.2lf\n",r*2*3.1415,r*r*3.1415); return 0; }