標題:
面積計算 (一) - 三角形
[打印本頁]
作者:
tonyh
時間:
2019-8-2 11:30
標題:
面積計算 (一) - 三角形
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-8-2 19:31
本帖最後由 黃宥華 於 2019-8-2 19:35 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分):";
cin>>x;
cout<<"請輸入三角形的高(公分):";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形的面積為"<<x*y/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-8-2 19:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施褕均
時間:
2019-8-2 19:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分):";
cin>>x;
cout<<"請輸入三角形的高(公分):";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-8-2 19:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分)";
cin>>x;
cout<<"請輸入三角形的高(公分)";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊佑諺
時間:
2019-8-2 19:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底: ";
cin>>x;
cout<<"請輸入三角形的高: ";
cin>>y;
cout<<"三角形的高"<<x<<"公分,"<<"三角形的底"<<y<<"公分,推得面積為"<<x*y/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-8-2 19:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-8-2 19:39
本帖最後由 林政瑜 於 2019-8-2 19:43 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float z, a;
cout<<"三角形的高(cm)";
cin>>z;
cout<<"三角形的底(cm)";
cin>>a;
cout<<"底"<<z<<"cm,高"<<a<<"cm,面積"<<a*z/2<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2019-8-2 19:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x, y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分。"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡忻霓
時間:
2019-8-2 19:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周之閔
時間:
2019-8-9 15:41
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分):";
cin>>x;
cout<<"請輸入三角形的高(公分):";
cin>>y;
cout<<"底"<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-8-9 18:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分): ";
cin>>x;
cout<<"請輸入三角形的高(公分): ";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-8-9 18:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入三角形的底(公分):";
cin>>x;
cout<<"請輸入三角形的高(公分):";
cin>>y;
cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2