標題:
進階-圖形練習
[打印本頁]
作者:
陳品肇
時間:
2018-10-20 11:36
標題:
進階-圖形練習
本帖最後由 陳品肇 於 2018-10-20 12:00 編輯
[attach]5064[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=7;i++)
{
if(i<4)
{
for(int x=1;x<=i;x++)
{
cout<<" ";
}
}else
{
for(int x=7;x>=i;x--)
{
cout<<" ";
}
}
for(int x=1;x<=10;x++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱全
時間:
2018-10-20 11:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i;j++)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
for(int i=1;i<=4;i++)
{
for(int j=4;j>=i;j--)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2018-10-20 11:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=3;i++)
{
for(int x=1;x<=i;x++)
{
cout<<" ";
}
for(int x=1;x<=10;x++)
{
cout<<"☆";
}
cout<<endl;
}
for(int i=1;i<=3;i++)
{
for(int x=4;x>=i;x--)
{
cout<<" ";
}
for(int x=1;x<=10;x++)
{
cout<<"☆";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
楊侍穎
時間:
2018-10-20 11:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i;j++)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
for(int i=1;i<=4;i++)
{
for(int j=4;j>=i;j--)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭元富
時間:
2018-10-20 11:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int k=i;k>=1;k--)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
for(int p=1;p<=3;p++)
{
for(int s=3;s>=p;s--)
{
cout<<" ";
}
for(int b=1;b<=10;b++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2018-10-20 11:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=3;i++)
{
for(int j=1;j<=i;j++)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
for(int x=1;x<=3;x++)
{
for(int y=3;y>=x;y--)
{
cout<<" ";
}
for(int a=1;a<=10;a++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳潔歆
時間:
2018-10-27 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=7; i++)
{
if(i<4)
{
for(int p=1; p<=i; p++)
{
cout<<" ";
}
}
else
{
for(int p=7; p>=i; p--)
{
cout<<" ";
}
}
for(int p=1; p<=10; p++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2