標題:
【競賽】題目二:正方形面積計算機
[打印本頁]
作者:
許婷芳
時間:
2020-1-22 13:33
標題:
【競賽】題目二:正方形面積計算機
題目二:正方形面積計算機
題目要求:
在畫面上第一行顯示「
請輸入正方形的邊長 (公分):
」字樣,並停留在第一行等待使用者輸入數字。
輸入數字後,在畫面上第三行顯示面積計算結果如「
這個正方形的面積為 15129 平方公分
」
作者:
鐘彥博
時間:
2020-1-22 13:55
本帖最後由 鐘彥博 於 2020-1-22 13:57 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長(公分):";
cin>>a;
cout<<" "<<endl;
cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
cout<<" "<<endl;
system("pause");
return 0;
}
複製代碼
作者:
姚夙葦
時間:
2020-1-22 13:56
本帖最後由 姚夙葦 於 2020-1-22 14:08 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長(公分):";
cin>>a;
cout<<""<<endl;
cout<<"這個正方形的面積為:"<<a*a<<"平方公分"<<endl;
cout<<""<<endl;
system("pause");
return 0;
}
複製代碼
作者:
龔裕倫
時間:
2020-1-22 13:57
本帖最後由 龔裕倫 於 2020-1-22 14:00 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長(公分):";
cin>>a;
cout<<" "<<endl;
cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
cout<<" "<<endl;
system("pause");
return 0;
}
作者:
方廷愷
時間:
2020-1-22 13:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入正方形的邊長 (公分):";
cin>>x;
cout<<"這個正方形的面積為"<<x*x<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳沛頤
時間:
2020-1-22 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長(公分):";
cin>>a;
cout<<" "<<endl;
cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
cout<<" "<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭義賢
時間:
2020-1-22 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形的邊長 (公分):";
cin>>a;
cout<<" "<<endl;
cout<<"這個正方形的面積為: "<<a*a<<"平方公分"<<endl;
cout<<" "<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇冠丞
時間:
2020-1-22 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入正方形的邊長 (公分):";
cin>>x;
cout<<" "<<endl;
cout<<"這個正方形的面積為"<<x*x<<"平方公分"<<endl;
cout<<" "<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳頡鴻
時間:
2020-1-22 14:04
本帖最後由 陳頡鴻 於 2020-1-24 19:18 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形的邊常(公分):";
cin>> a;
cout<<endl;
cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
穆玨諺
時間:
2020-1-22 14:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入正方形的邊長 (公分):";
cin>>x;
cout<<"這個正方形的面積為"<<x*x<<"平方公分"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
穆宥臻
時間:
2020-1-22 14:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長(公分):";
cin>>a;
cout<<" "<<endl;
cout<<"這個正方形的面積為"<<a*a<<"平方公分"<<endl;
cout<<" "<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2