標題:
[隨堂測驗] 面積計算 (二) - 圓面積
[打印本頁]
作者:
李泳霖
時間:
2021-3-6 16:33
標題:
[隨堂測驗] 面積計算 (二) - 圓面積
本帖最後由 李泳霖 於 2021-3-13 11:59 編輯
圓面積的計算公式如下:
圓面積 = 半徑 x 半徑 x 3.14
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳勤允
時間:
2021-3-6 16:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
float a;
cout << "請輸入的圓的半徑:";
cin >> a;
cout << "圓的面積為:為" << a*a*3.14 << "平方公分" << endl;
system("pause");
return 0;
}
複製代碼
作者:
莊冠鈞
時間:
2021-3-6 16:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a;
cout<<"輸入圓的半徑:";
cin>>a;
cout<<"半徑"<<a<<"公分的圓,面積為"<<3.14*a*a<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林佑宸
時間:
2021-3-6 16:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a;
cout<<"輸入園的半徑(公分)";
cin>>a;
cout<<"半徑"<<a<<"公分的圓,面積為"<< a*a*3.14<<"平方公分.";
system("pause");
return 0;
}
複製代碼
作者:
陳志祐
時間:
2021-3-6 16:47
本帖最後由 陳志祐 於 2021-3-6 17:11 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y=3.14;
cout<<"輸入圓的半徑(公分): ";
cin>>x;
cout<<"半徑為"<<x<<"公分的圓,面積為"<<x*x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝苙豪
時間:
2021-3-6 17:13
本帖最後由 謝苙豪 於 2021-3-6 17:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
count<<"請輸入圓的半徑(公分):";
cin>>x;
cout<<"半徑"公分的圓,<<x*x*3.14<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
富溢
時間:
2021-3-6 17:20
#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;
}
複製代碼
作者:
周桓宇
時間:
2021-3-6 17:20
nclude<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入圓的半徑(公分):";
cin>>x;
cout<<"半徑"<<x<<"公分的圓,面積為"<<x*x*3.14<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
江家同
時間:
2021-3-6 17:21
#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;
}
複製代碼
作者:
蔡秉勛
時間:
2021-3-6 17:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入圓的半徑(公分)";
cin>>x;
cout<<"半徑"<<x<<"公分的圓,面積為"<<x*x*3.14159<<"平方公分";
system("pause");
return 0;
複製代碼
作者:
鍾易澄
時間:
2021-3-13 15:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r;
cout<<"請輸入半徑(公分):";
cin>>r;
cout<<"半徑"<<r<< "公分的圓形,面積是"<<r*r*3.14<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃昱齊
時間:
2021-4-10 16:05
#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;
}
複製代碼
作者:
陳佑俊
時間:
2021-4-21 21:09
本帖最後由 陳佑俊 於 2021-4-21 21:11 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入圓形的半徑(公分):";
cin>>x;
cout<<"半徑"<<x<<"公分"<<"的圓,面積是"<<x*x*3.14<<"平方公分";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許晏睿
時間:
2021-4-22 18:48
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2