標題:
小星星 3
[打印本頁]
作者:
tonyh
時間:
2014-10-25 11:20
標題:
小星星 3
本帖最後由 tonyh 於 2014-11-8 10:58 編輯
利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
[attach]1040[/attach]
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(_____________)
{
for(_____________)
{
cout<<" ";
}
for(_____________)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=1; j<=4-i; j++)
{
cout<<" ";
}
for(int k=1; k<=10; k++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2014-10-25 11:22
本帖最後由 梁和雋 於 2014-10-25 11:48 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=1; j<=4-i; j++)
{
cout<<" ";
}
for(int a=10; a>=1; a-- )
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-10-25 11:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=1; j<=4-i; j++)
{
cout<<" ";
}
for(int a=10; a>=1; a-- )
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-10-25 11:43
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=1; j<=4-i; j++)
{
cout<<" ";
}
for(int v=10; v>=i; v--)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-10-25 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int j=1; j<=4; j++)
{
for(int i=1; i<=4-j; i++)
{
cout<<" ";
}
for(int k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-11-1 10:30
#include<iostream>
using namespace std;
int main()
{
int i;
int j;
for(i=0;i<4;i++)
{
for(j=4;j>i;j--)
{
cout<<" ";
}
for(j=0;j<10;j++)
{
if(j==0)
cout<<"◢"; //A2A8
else if(j==9)
cout<<"◤"; //A2AB
else
cout<<"▉"; //A270
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2