返回列表 發帖
本帖最後由 尤泓鈞 於 2012-6-5 22:43 編輯
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請輸入您要的半徑(單位:公分)"<<endl;
  7.     cin>>x;
  8.     cout<<x*x*3.14<<"平方公分"<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

返回列表