標題:
[作業1] 面積計算 (三) - 矩形
[打印本頁]
作者:
許婷芳
時間:
2019-10-12 08:35
標題:
[作業1] 面積計算 (三) - 矩形
作者:
王銘鴻
時間:
2019-10-18 21:26
本帖最後由 王銘鴻 於 2019-10-18 23:03 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入矩形的長(公分):";
cin>>x;
cout<<"請輸入矩形的寬(公分):";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<(x+y)*2<<"公分,面積為" <<x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉愷鈞
時間:
2019-10-18 21:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入矩形的長(公分):";
cin>>x;
cout<<"請輸入矩形的寬(公分):";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<(x+y)*2<<"公分,面積為" <<x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李穎俊
時間:
2019-10-19 09:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入矩形的長(公分):";
cin>>x;
cout<<"請輸入矩形的寬(公分):";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<(x+y)*2<<"公分,面積為" <<x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭浚宇
時間:
2019-10-19 09:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入矩形的長(公分):";
cin>>x;
cout<<"請輸入矩形的寬(公分):";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<(x+y)*2<<"公分,面積為" <<x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林羿丞
時間:
2019-10-19 09:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<< "請輸入矩形的長(公分):";
cin>>x;
cout<< "請輸入矩形的長(公分):";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周常為"<<2*(x+y)<<",面積為"<<x*y<<"平方公分."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張淯祺
時間:
2019-10-19 09:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入矩形的長(公分):";
cin>>x;
cout<<"請輸入矩形的寬(公分):";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<(x+y)*2<<"公分,面積為" <<x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱閎聿
時間:
2019-10-19 09:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y;
cout<<"請輸入矩形的長(公分):";
cin>>x;
cout<<"請輸入矩形的寬(公分):";
cin>>y;
cout<<"長"<<x<<"公分,寬"<<y<<"公分的矩形,周長為"<<(x+y)*2<<"公分,面積為" <<x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李穎俊
時間:
2019-10-19 10:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x,y,z;
cout<<"請輸入梯形的上底(公分):";
cin>>x;
cout<<"請輸入矩形的下底(公分):";
cin>>y;
cout<<"請輸入矩形的高(公分):";
cin>>z;
cout<<"上抵"<<x<<"公分,高"<<y<<"公分的矩形,面積為" <<x*y<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2