標題:
小星星 2
[打印本頁]
作者:
張翼安
時間:
2015-11-14 01:33
標題:
小星星 2
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(_______________)
{
for(_______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-11-14 11:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i = 5; i >= 1; i--)
{
for(int a = i; a >= 1; a--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-11-14 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5;i>=1;i--)
{
for(int a=i;a>=1;a--)
{
cout<<"★";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-11-14 11:40
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=5;i>=1;i--)
{
for(int x=i;x>=1;x--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-11-14 11:44
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=5;i>=1;i--)
{
for(int a=i;a>=1;a--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2