標題:
[隨堂測驗] 面積計算 (二) - 圓面積
[打印本頁]
作者:
許婷芳
時間:
2019-8-2 17:36
標題:
[隨堂測驗] 面積計算 (二) - 圓面積
圓面積的計算公式如下:
圓面積 = 半徑 x 半徑 x 3.14
[attach]6936[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a;
cout<<"請輸入圓形的半徑:";
cin>>a;
cout<<"半徑:"<<a<<"公分的圓形,面積為"<<a*a*3.14<<"平方公分。"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝以愛
時間:
2019-8-2 20:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入圓形的半徑(公分):"<<endl;
cin>>x;
cout<<"半徑:"<<x<<"公分的圓,面積為"<<x*x*3.14<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林祐霆
時間:
2019-8-2 20:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a;
cout<<"請輸入三角形的直徑(公分)"<<endl;
cin>>a;
cout<<"圓形的直徑為"<<a<<"公分,是"<<a*a*3.14/2<<"平方公分。"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇詠翔
時間:
2019-8-2 20:33
#include<iostream>
#include<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:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a;
cout<<"請輸入三角形的直徑(公分)"<<endl;
cin>>a;
cout<<"圓形的直徑為"<<a<<"公分,是"<<a*a*3.14/2<<"平方公分。"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪承廷
時間:
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
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a;
cout<<"請輸入三角形的直徑(公分)"<<endl;
cin>>a;
cout<<"圓形的直徑為"<<a<<"公分,是"<<a*a*3.14/2<<"平方公分。"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤爾呈
時間:
2019-8-2 20:50
#include<iostream>
#include<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:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入圓(公分)";
cin>>x;
cout<<"半徑:"<<x<<"公分的三角形面積為"<<x*x*3.14<<"平方公分";
system("pause");
return 0;
}
複製代碼
作者:
廖文綺
時間:
2019-8-9 18:56
#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