Board logo

標題: [隨堂測驗] 面積計算 (二) - 圓面積 [打印本頁]

作者: 許婷芳    時間: 2019-8-2 17:36     標題: [隨堂測驗] 面積計算 (二) - 圓面積

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

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

作者: 謝以愛    時間: 2019-8-2 20:30

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

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

作者: 林祐霆    時間: 2019-8-2 20:31

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a;
  7.     cout<<"請輸入三角形的直徑(公分)"<<endl;
  8.     cin>>a;
  9.     cout<<"圓形的直徑為"<<a<<"公分,是"<<a*a*3.14/2<<"平方公分。"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 蘇詠翔    時間: 2019-8-2 20:33

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.    float a;
  7.     cout<<"請輸入圓的半徑(公分):"<<endl;
  8.     cin>>a;
  9.     cout<<"半徑:"<<a<<"公分的圓,面積為"<<a*a*3.14<<"平方公分"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 謝以恩    時間: 2019-8-2 20:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a;
  7.     cout<<"請輸入三角形的直徑(公分)"<<endl;
  8.     cin>>a;
  9.     cout<<"圓形的直徑為"<<a<<"公分,是"<<a*a*3.14/2<<"平方公分。"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 洪承廷    時間: 2019-8-2 20:44

#inciude<iostream>
#inciude<cstdlib>
using namespace std;
int main()
{
    float a;
    cout<<"請輸入圓的半徑:"<<endl;
    cin>>a;
   
    cout<<"半徑"<<a<<"公分的圓,面積為"<<a*a*3.14<<"平方公分"<<endl;
    system("pause");
    return 0;
    }
作者: 蘇韋誠    時間: 2019-8-2 20:46

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float a;
  7.     cout<<"請輸入三角形的直徑(公分)"<<endl;
  8.     cin>>a;
  9.     cout<<"圓形的直徑為"<<a<<"公分,是"<<a*a*3.14/2<<"平方公分。"<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 尤爾呈    時間: 2019-8-2 20:50

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

作者: 廖文綺    時間: 2019-8-2 20:55

  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<<"平方公分";
  10.    
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 廖文綺    時間: 2019-8-9 18:56

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





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