Board logo

標題: [作業] 圓形面積計算機 [打印本頁]

作者: tonyh    時間: 2011-11-2 13:41     標題: [作業] 圓形面積計算機

本帖最後由 tonyh 於 2011-11-2 14:05 編輯

本帖隱藏的內容需要回復才可以瀏覽

作者: 陳詩凱    時間: 2011-11-2 14:15

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.   int x;
  6.   cout<<"<圓形面積計算機>"<<endl;
  7.   cout<<"請輸入圓的半徑(公分):";
  8.   cin>>x;
  9.   cout<<endl;
  10.   cout<<"半徑"<<x<<"公分的圓形,面積為"<<(x*x)*3.14<<"平方公分."<<endl;
  11.   system("pause");
  12.   return 0;
  13. }   
複製代碼

作者: 黃崇維    時間: 2011-11-9 13:44

本帖最後由 黃崇維 於 2011-11-9 13:47 編輯

#include<iostream>

using namespace std;

int main()

{

  int x;

  cout<<"<圓形面積計算機>"<<endl;

  cout<<"請輸入圓的半徑(公分):";

  cin>>x;

  cout<<"半徑"<<x<<"公分的圓,面積為"<<x*x*3.14<<"平方公分."<<endl;

  system("pause");

  return 0;

}




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2