標題:
面積計算 (一) - 三角形
[打印本頁]
作者:
歐柏罕
時間:
2017-9-23 13:57
標題:
面積計算 (一) - 三角形
三角形的面積公式:底*高/2
作者:
林峻安
時間:
2017-9-23 14:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int len=0;
int wid=0;
cout<<"請輸入底"<<endl;
cin>>len;
cout<<"請輸入高"<<endl;
cin>>wid;
cout<<"等於"<<len*wid/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
鄭楀諺
時間:
2017-9-23 14:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int len;
int wid;
cout<<"請輸入底(公分):"<<endl;
cin>>len;
cout<<"請輸入高(公分):"<<endl;
cin>>wid;
cout<<"此三角形面積是"<<len*wid/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2017-9-23 14:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int gro=0;
int hig=0;
cout<<"請輸入 底:"<<endl;
cin>>gro;
cout<<"請輸入 高:"<<endl;
cin>>hig;
cout<<"面積是:"<<gro*hig/2<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
康紘嘉
時間:
2017-9-23 14:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int len=0;
int wid=0;
cout<<"請輸入底"<<endl;
cin>>len;
cout<<"請輸入高"<<endl;
cin>>wid;
cout<<"等於"<<len*wid/2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-9-23 14:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int len;
int wid;
cout<<"請輸入 底:"<<endl;
cin>>len;
cout<<"請輸入 高:"<<endl;
cin>>wid;
cout<<" 底*高/2:"<<len*wid/2 <<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2