標題:
[隨堂測驗] 面積計算 (三) - 圓面積
[打印本頁]
作者:
陳品肇
時間:
2018-9-7 16:13
標題:
[隨堂測驗] 面積計算 (三) - 圓面積
本帖最後由 陳品肇 於 2018-9-7 16:15 編輯
圓面積的計算公式如下:
圓面積 = 半徑 x 半徑 x 3.14
[attach]4746[/attach]
作者:
鄭元富
時間:
2018-9-8 10:09
本帖最後由 鄭元富 於 2018-9-8 10:31 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入圓面積的半徑:";
cin>>x;
cout<<"圓的面積為="<<x*x*3.14<<endl;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2018-9-8 10:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"輸入圓的半徑(cm):";
cin>> x;
cout<<"半徑"<<x<<"cm的圓"<<",面積為"<<x*x*3.14<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2018-9-8 10:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入圓的半徑(cm):";
cin>>x;
cout<<"半徑"<<x<<"cm的圓"<<"面積為"<<x*x*3.14<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊侍穎
時間:
2018-9-8 10:18
#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;
}
複製代碼
作者:
蘇昱全
時間:
2018-9-8 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x;
cout<<"請輸入圓的半徑(公分):";
cin>>x;
cout<<"半徑"<<x<<"公分的圓"<<",面積為"<<x*x*3.14<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳潔歆
時間:
2018-9-8 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入圓面積的半徑: ";
cin>>x;
cout<<"半徑"<<x<<"公分的圓,面積為"<<x*x*3.14<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2