標題:
小星星 2
[打印本頁]
作者:
tonyh
時間:
2019-9-6 20:28
標題:
小星星 2
#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=5; i>=1; i--)
{
for(int j=1; j<=i; j++)
{
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=5; j>=i; j--)
{
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;
}
複製代碼
作者:
林政瑜
時間:
2019-9-6 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int d=0;
for(int e=5; e>=1; e--)
{
for(int i=1; i<=e; i++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-9-6 20:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int j=1; j<=i; j++)
{
cout<<"野馬GT";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施褕均
時間:
2019-9-6 20:53
#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;
}
複製代碼
作者:
黃辰昊
時間:
2019-9-6 20:54
#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;
}
複製代碼
作者:
孫嘉駿
時間:
2019-9-6 20:54
#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;
}
複製代碼
作者:
李宇澤
時間:
2019-9-6 20:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int a=1; a<=i; a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宥華
時間:
2019-9-6 20:55
#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;
}
複製代碼
作者:
楊佑諺
時間:
2019-9-6 20:56
#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;
}
複製代碼
作者:
董宸佑
時間:
2019-9-6 20:56
#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;
}
複製代碼
作者:
蔡忻霓
時間:
2019-9-6 20:58
#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;
}
複製代碼
作者:
陳宥穎
時間:
2019-9-8 17:41
#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;
}
複製代碼
作者:
陳宥穎
時間:
2019-9-20 19:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=7; i++)
{
cout<<i<<"隻青蛙"<<i<<"張嘴, "<<i*2<<"個眼睛"<<i*4<<"條腿, ";
for(int j=1; j<=i; j++)
{
cout<<"撲通~";
}
cout<<"跳下水!"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2