標題:
【課堂練習】面積計算 - 圓面積
[打印本頁]
作者:
陳育霖
時間:
2023-5-29 22:08
標題:
【課堂練習】面積計算 - 圓面積
圓面積的計算公式如下:
圓面積 = 半徑 x 半徑 x 3.14
作者:
陳沁寧
時間:
2023-5-30 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main () //主程式
{
float a; //a是半徑
cout << "輸入圓的半徑(cm): ";
cin >> a;
cout << "半徑" << a << "公分的圓,面積為" << a * a * 3.14 << "平方公分" << endl;
system("pause");
return 0 ; //回傳主控台
}
複製代碼
作者:
林家鉌
時間:
2023-5-30 20:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float r;
cout<<"pis input the radius of the circle";
cin>>r;
cout<<"if the radius of the circle is "<<r<<",then the area of the circle should be "<<r*r<<" times pai\n"<<"which is about "<<r*r*3.1415;
system("pause");
return 0;
}
複製代碼
作者:
李東諺
時間:
2023-5-30 20:28
回復
1#
陳育霖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入半徑(公分): ";
cin>>x;
cout<<"底"<<x<<"公分;,面積為"<<(x*x)*3.14<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孟涵
時間:
2023-5-30 20:30
本帖最後由 孟涵 於 2023-5-30 21:00 編輯
#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;
}
複製代碼
作者:
黃郁甯
時間:
2023-5-30 20:31
<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入圓形的半徑(公分): ";
cin>>x;
cout<<"請輸入圓形的半徑(公分): ";
cin>>y;
cout<<"半徑"<<x<<"公分,半徑"<<y<<"公分的圓形,面積為"<<x*y*3.14<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王閎民
時間:
2023-5-30 20:31
本帖最後由 王閎民 於 2023-5-30 20:32 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float p=3.14;
float r;
cout<<"請輸入圓半徑(cm): ";
cin >>r;
cout<<"半徑為"<<r<<"的圓形面積為: "<<r*r*p<<"平方公分"<< endl;
system("pause");
return 0;
}
複製代碼
回復
1#
陳育霖
作者:
陳姿瑜
時間:
2023-5-30 20:31
本帖最後由 陳姿瑜 於 2023-5-30 20:33 編輯
#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;
}
複製代碼
作者:
李晨希
時間:
2023-5-30 20:33
#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;
}
複製代碼
作者:
徐楷恩
時間:
2023-5-30 20:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入圓的半徑 ";
cin>>x;
cout<<"半徑"<<x<<"公分的圓,面積為"<< x*x*3.14<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭宏宇
時間:
2023-6-4 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入圓形的半徑(公分):";
cin>>x;
cout<<"半徑"<<x<<"公分的圓,面積為"<<x*x*3.14<<"平方公分"<<endl;
system("pause");
return0;
}
複製代碼
作者:
陳品諺
時間:
2023-6-5 20:43
本帖最後由 陳品諺 於 2023-6-5 20:50 編輯
#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;
}
複製代碼
作者:
楊承諺
時間:
2023-8-12 09:22
#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