標題:
小星星 2
[打印本頁]
作者:
tonyh
時間:
2014-10-25 10:50
標題:
小星星 2
本帖最後由 tonyh 於 2014-11-8 10:58 編輯
[attach]1039[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_______________)
{
for(_______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
#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;
}
複製代碼
作者:
梁和雋
時間:
2014-10-25 10:53
本帖最後由 梁和雋 於 2014-10-25 11:09 編輯
#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;
}
複製代碼
............
作者:
李大全
時間:
2014-10-25 10:54
#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;
}
複製代碼
作者:
謝瀞儀
時間:
2014-10-25 11:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5;i>=1;i--)
{
for(int j=5;j>=6-i;j--)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-10-25 11:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int j=1;j<=5;j++)
{
for(int i=5;i>=j;i--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-11-1 10:30
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2