標題:
[作業] 小星星 (二)
[打印本頁]
作者:
tonyh
時間:
2013-10-26 18:03
標題:
[作業] 小星星 (二)
本帖最後由 tonyh 於 2013-10-26 18:06 編輯
[attach]762[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_______________)
{
for(_______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-10-26 18:06
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
for (int i=5; i>=1;i--)
{
for (int j=1; j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-10-26 18:06
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int a=5; a>=i; a--)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-10-26 18:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-10-26 18:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5;i>=1;i-- )
{
for(int j=1;j<=i;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-10-26 18:15
#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;
}
複製代碼
作者:
施伯叡
時間:
2013-11-9 09:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int j=1; j<=i; j++)
{
cout<< "*" ;
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-11-9 15:30
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int a=5; a>=i; a--)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2