標題:
正方形
[打印本頁]
作者:
tonyh
時間:
2013-3-12 20:41
標題:
正方形
本帖最後由 tonyh 於 2013-3-21 20:53 編輯
設計一個小程式, 讓使用者輸入正方形的邊長, 即可計算出正方形面積.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請指定正方形的邊長(公分):";
cin>>x;
cout<<"邊長"<<x<<"公分的正方形, 其面積為"
<<x*x<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-3-12 20:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"這市一個鄭方形面積計算器:"<<endl;
cout<<"請輸入邊長的值(單位:公分:";
cin>>x;
cout<<"請輸入邊的值:";
cout<<"當正方形邊長的為"<<x<<"公分,他的面積是"<<x*x<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-3-21 21:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入正方形的邊長: ";
cin>>x;
cout<<"邊長"<<x<<"公分的正方形,其面積為"
<<x*x<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2