標題:
小星星 2
[打印本頁]
作者:
李泳霖
時間:
2021-1-30 18:14
標題:
小星星 2
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_______________)
{
for(_______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
本帖隱藏的內容需要回復才可以瀏覽
本帖隱藏的內容需要回復才可以瀏覽
作者:
馬琮翰
時間:
2021-2-2 17:05
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int h=5; h>=1; h--)
{
for(int w=h; w>=1; w--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃峻偉
時間:
2021-3-25 18:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int j=5;j>=1;j--)
{
for(int k=1;k<=j;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟軒
時間:
2021-10-28 18:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5;i>0;i--)
{
for(int j=1;j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李睿宸
時間:
2022-5-13 17:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=6-i;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
俞經典
時間:
2022-5-27 14:58
#include<iostream>
using namespace std;
int main()
{
for(int a=5;a>=1;a--)
{
for(int b=1;b<=a;b++)
{
cout<<"*";
}
cout<<endl;
}
return 0;
}
複製代碼
作者:
若晴
時間:
2022-6-13 20:52
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=0; j<=5-i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林昕霓
時間:
2022-6-30 16:55
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int j=i; j>=1; j--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王廷悠
時間:
2022-6-30 17:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=5;j>=i;j--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳舒彤
時間:
2022-7-3 21:23
#include <iostream>
using namespace std;
int main()
{
for(int i=0;i<5;i++)
{
for(int j=5-i;j>0;j--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張鈊喬
時間:
2022-7-4 20:50
#include<iostream>
using namespace std;
int main()
{
int i,j;
for(i=1;i<=5;i++)
{
for(j=1;j<=6-i;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳柏潁
時間:
2022-8-6 09:19
本帖最後由 吳柏潁 於 2022-8-6 09:21 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1;i<=5;i+=1)
{
for(int j=5;j>=i;j-=1)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡博丞
時間:
2023-3-31 21:10
#include <iostream>
using namespace std;
int main()
{
for(int i=5;i>-1;i--)
{
for(int j=1;j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
return 0;
}
複製代碼
作者:
陳郁媗
時間:
2023-4-11 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=5;j>=i;j--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳政軒
時間:
2023-12-13 16:35
#include<iostream>
using namespace std;
int main(){
for(int i=1;i<=5;i++)
{
for(int j=5;j>=i;j--)
cout<<'*';
cout<<'\n';
}
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2024-5-11 15:58
#include <cstdlib>
#include <iostream>
using namespace std;
int main(){
for(int i=5;i>=1;i=i-1){
for(int j=1;j<=i;j=j+1){
cout<<"*";
}
cout<<endl;
}
system("PAUSE");
return EXIT_SUCCESS;
}
複製代碼
作者:
何若恩
時間:
2024-8-23 18:00
#include <iostream>
using namespace std;
int main() {
for (int i = 5; i >= 1; i--) {
for (int j = 1; j <= i; j++) {
cout << "*";
}
cout<<endl;
}
return 0;
}
複製代碼
作者:
蔡梁新
時間:
2024-8-23 20:24
#include <iostream>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=5;j>=i;j--)
{
cout<<"*";
}
cout<<endl;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2