標題:
小星星 1
[打印本頁]
作者:
陳品肇
時間:
2019-4-27 10:05
標題:
小星星 1
[attach]6335[/attach]
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(______________)
{
for(______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃傳耀
時間:
2019-4-27 11:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=1;x<=5;x++)
{
for(int y=1;y<=x;y++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
邱楷宸
時間:
2019-4-27 11:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=1;x<=5;x++)
{
for(int y=1;y<=x;y++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪子涵
時間:
2019-4-27 11:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j;
for(i=1;i<=5;++i)
{
for(j=1;j<=i;++j)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-4-27 11:22
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=50;i++)
{
for(int j=1;j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝蓮金
時間:
2019-4-27 11:24
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪藜芸
時間:
2019-4-27 11:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int a=1;a<=i;a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-5-4 09:49
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int x=1;x<=5;x++)
{
for(int y=1;y<=x;y++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-6-4 17:24
本帖最後由 陳宇柏 於 2019-7-20 11:23 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2