標題:
for迴圈-複習(三)
[打印本頁]
作者:
陳育霖
時間:
2023-7-5 22:18
標題:
for迴圈-複習(三)
設計一程式讓使用者輸入正方形的邊長,並輸出正方形圖案及面積。
[attach]15987[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳姿瑜
時間:
2023-7-6 20:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a;
cout<<"請輸入正方形邊長: " ;
cin>>a;
for(int i=1;i<=a;i++)
{
for(int m=1;m<=a;m++)
{
cout<<"* ";
}
cout<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳沁寧
時間:
2023-7-6 20:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int a = 0;
cout << "請輸入正方形邊長 : ";
cin >> a;
for (int i = 1; i <= a; i++){
for (int j = 1; j <= a; j++){
cout << "*";
}
cout << endl;
}
cout << "正方形的面積為 : " << a * a << endl;
system("pause");
return 0;
}
複製代碼
作者:
林家鉌
時間:
2023-7-6 20:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0;
cout<<"the length of the squar : ";
cin>>a;
for(int b=a;b>0;b--)
{
for(int c=a;c>0;c--)
{
cout<<"# ";
}
cout<<"\n";
}
cout<<"the area of the squar is "<<a*a<<"\n";
system("pause");
return 0;
}
複製代碼
作者:
楊承樺
時間:
2023-7-6 20:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長: ";
cin>>a;
for(int b=1;b<=a;b++)
{
for(int c=1;c<=a;c++)
{
cout<<"* ";
}
cout<<endl;
}
cout<<"正方形的面積為: "<<a*a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李東諺
時間:
2023-7-6 20:16
本帖最後由 李東諺 於 2023-7-6 20:19 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長: " ;
cin>>a;
for(int i=1;i<=a;i++)
{
for(int j=1;j<=a;j++)
{
cout<<"*";
}
cout<<endl;
}
cout<<"面積為"<<a*a<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
陳育霖
作者:
孟涵
時間:
2023-7-6 20:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長: ";
cin>>a;
for(int i=1; i<=a; i++)
{
for(int j=1; j<=a; j++)
{
cout<<"* ";
}
cout<<endl;
}
cout<<"正方形的面積為: "<<a*a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐楷恩
時間:
2023-7-6 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長: ";
cin>>a;
for(int i=1;i<=a;i++)
{
for(int j=1;j<=a;j++)
{
cout<<"* ";
}
cout<<endl;
}
cout<<"正方形的面積為: "<<a*a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭宏宇
時間:
2023-7-6 20:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形的邊長: ";
cin>>a;
for(int x=1;x<=a;x++)
{
for(int y=1;y<=a;y++)
{
cout<<"* ";
}
cout<<endl;
}
cout<<endl<<endl;
cout<<"正方形的面積為: "<<a*a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李晨希
時間:
2023-7-10 13:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入正方形邊長: ";
cin>>a;
for(int i=1;i<=a;i++)//行數
{
cout<<"*"<<" ";
for(int i=1;i<a;i++)
{
cout<<"*"<<" ";
}
cout<<endl;
}
cout<<"正方形的面積為: "<<a*a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2