標題:
008_圓形計算機
[打印本頁]
作者:
游東祥
時間:
2015-4-18 11:54
標題:
008_圓形計算機
宣告一個變數 r
讓使用者輸入一個半徑數字並存到 r 變數
接著輸出圓的周長與面積
請輸入圓的半徑(公分):10
=================
這個圓的周長是 62.8 公分
這個圓的面積是 314 平方公分
複製代碼
作者:
王翔
時間:
2015-4-18 12:00
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
re:
int r= 0;
cout<<"請輸入圓的半徑(公分):";
cin>>r;
float l = 2*3.14*r;
float m =r*r*3.14;
cout<<"====================="<<endl;
cout<<"這個圓的周長是"<<l<<"公分"<<endl;
cout<<"這個圓的面積是 "<<m<<"平方公分"<<endl;
goto re;
system ("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-4-18 12:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r = 0;
cout << "請輸入圓的半徑(公分):";
cin >> r;
float l = 2 * 3.14 * r;
float m = r * r * 3.14;
cout << "=====================" << endl;
cout << "這個圓形的周長是" << l << "公分" << endl;
cout << "這個圓形的面積是" << m << "平方公分" << endl;
system("pause");
return 0;
}
複製代碼
作者:
林廷翰
時間:
2015-4-18 12:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r = 0;
cout<<"請輸入圓的半徑(公分):";
cin>>r;
float l = 2*r*3.14;
float m = r*r*3.14;
cout<<"====================="<<endl;
cout<<"這個圓的周長是"<<l<<"公分"<<endl;
cout<<"這個圓面積的是"<<m<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-4-24 21:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int r;
cout<<"請輸入圓的半徑(公分):";
cin>>r;
cout<<"====================="<<endl;
cout<<"這個圓的周長是 "<<r*2*3.14<<endl;
cout<<"這個圓的面積是 "<<r*r*3.14<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2