標題:
小星星3
[打印本頁]
作者:
may
時間:
2023-1-27 17:11
標題:
小星星3
利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡沛倢
時間:
2023-1-29 21:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=3;j>=i;j--)
{
cout<<" ";
}
for(int k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2023-2-2 21:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=3;j>=i;j--)
{
cout<<" ";
}
for(int h=1;h<=10;h++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2023-2-2 21:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=3;j>=i;j--)
{
cout<<" ";
}
for(int k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2023-2-3 10:13
#include <iostream>
using namespace std;
int main()
{
for (int i = 4; i >= 1; i -= 1)
{
for (int j = 1; j <= i; j += 1)
{
cout << " ";
}
for (int width = 1; width <= 10; width++)
{
cout << "*";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曹祁望
時間:
2023-2-3 18:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int i, j;
for(i=4; i>=1; i-=1)
{
for(j=2; j<=i; j+=1)
{
cout<<" ";
}
for(j=1; j<=10; j+=1)
{
cout<<"*";
}
cout<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
廖秝瑜
時間:
2023-2-3 19:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=3;j>=i;j--)
{
cout<<" ";
}
for(int h=1;h<=10;h++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2023-2-3 19:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0 ; i<4 i++)
{
for(int j=0 ;j<3-i ;j++)
{
cout<<" ";
}
for(int k=0;k<10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳寶綸
時間:
2023-2-3 19:19
#include <iostream>
using namespace std;
int main()
{
for (int i = 4; i >= 1; i -= 1)
{
for (int j = 1; j <= i; j += 1)
{
cout << " ";
}
for (int width = 1; width <= 10; width++)
{
cout << "*";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2023-2-3 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<4;i++)
{
for(int j=0;j<3-i;j++)
{
cout<<" ";
}
for(int k=0; k<10; k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2023-2-3 19:29
#include<iostream>
using namespace std;
int main()
{
for(int i=0;i<4;i++)
{
for(int j=0;j<3-i;j++)
{
cout<<" ";
}
for(int k=0;k<10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2