Board logo

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

作者: 方浩葦    時間: 2024-6-1 09:22     標題: [隨堂測驗] 面積計算 (二) - 圓面積

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



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

作者: 林少謙    時間: 2024-6-1 14:41

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    float x;
    cout<<"請輸入的半徑:";
    cin>>x;
    cout<<"半徑"<<x<<"公分的圓"<<"面積是"<<x*x*3.14<<"平方公分"<<endl;
    system("pause");
    return 0;
}
作者: 高湘庭    時間: 2024-6-1 14:41

#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
    float x;

cout<<"請輸入圓的半徑(公分)";
cin>>x;
cout<<"半徑"<<x<<"公分的圓,面積為"<<x*x*3.14<<"平方公分"<<endl;

system("pause");
return 0;




}
作者: 劉奕劭    時間: 2024-6-1 14:41

#include <iostream>
#include <cstdlib>
using namespace std;

int main(){
    float x;
    cout<<"請輸入圓形的半徑";
    cin>>x;
    cout<<"半徑="<<x<<"公分的圓形,面積="<<x*x*3.14<<"平方公分"<<endl;

    system ("pause");
    return 0;
}
作者: 洪榮辰    時間: 2024-6-1 14:41

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    float r;
    cout<<"請輸入圓的半徑(公分):";
    cin>>r;
    cout<<"半徑"<<r<<"公分的圓,面積為"<<r*r*3.14<<"平方公分"<<endl;
    system("pause");
    return 0;
}
作者: 李偈睿    時間: 2024-6-1 14:43

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





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