標題:
[挑戰題(中)] 小星星 13-數字金字塔1
[打印本頁]
作者:
鄭繼威
時間:
2022-7-20 19:33
標題:
[挑戰題(中)] 小星星 13-數字金字塔1
本帖最後由 鄭繼威 於 2022-8-10 18:16 編輯
就拿數字金字塔當作我們小星星的結尾吧~
請參考之前做的
小星星 7-135三角形2
跟135的小星星其實都一樣
1. 只是*變數字而已
2. 有9層之高
[attach]13360[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要積分高於 1 才可瀏覽
作者:
黃柏青
時間:
2022-7-20 20:58
本帖最後由 黃柏青 於 2022-7-20 21:03 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
for(int i=1; i<=9; i++){
for(int k=8; k>=i; k--){
cout<<" ";
}
for(int j=1; j<=2*i-1; j++){
cout<<i;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-7-20 21:03
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int k=1; k<=9-i; k++)
cout<<" ";
for(int j=1; j<=i*2-1; j++)
{
cout<<i;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2022-7-20 21:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9-i; j++)
{
cout<<" ";
}
for(int k=1; k<=i*2-1; k++)
{
cout<<i;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2022-7-20 21:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9-i; j++)
{
cout<<" ";
}
for(int k=1; k<=i*2-1; k++)
{
cout<<i;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-7-27 19:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9-i; j++)
{
cout<<" ";
}
for(int k=1; k<=i*2-1; k++)
{
cout<<i;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳柏潁
時間:
2022-8-10 18:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1;i<=9;i+=1)
{
for(int j=8;j>=i;j-=1)
{
cout<<" ";
}
for(int k=1;k<=2*i-1;k+=1)
{
cout<<i;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2