返回列表 發帖

[隨堂測驗] 面積計算 (三) - 圓面積

本帖最後由 陳品肇 於 2018-9-7 16:15 編輯

圓面積的計算公式如下:
圓面積 = 半徑 x 半徑 x 3.14

附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 鄭元富 於 2018-9-8 10:31 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x;
  7.     cout<<"請輸入圓面積的半徑:";
  8.     cin>>x;
  9.    
  10.     cout<<"圓的面積為="<<x*x*3.14<<endl;

  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表