#34490: trg00


yp11151121@yphs.tp.edu.tw (709-34張詠鈞)


#include<bits/stdc++.h>
using namespace std;
int main()
{
    float r;
    cout << "請輸入半徑 : ";
    cin >> r;
    cout << "此圓的面積為 " << r*r*3.14 <<endl; 
    cout << "此圓的周長為 " << r*3.14*2 <<endl; 
    
}