標題:
[隨堂測驗] 小星星 7 - 梯形
[打印本頁]
作者:
方浩葦
時間:
2024-6-22 06:47
標題:
[隨堂測驗] 小星星 7 - 梯形
利用巢狀迴圈, 將符號*整齊排列成如下之梯形:
(上底5顆* , 下底9顆* , 高3顆*)
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(______________)
{
for(______________)
{
cout<<" ";
}
for(______________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
林少謙
時間:
2024-6-22 14:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x=5;
for(int i=1 ; i<=3 ; i++)
{
for(int j=2 ; j>=i ; j--)
{
cout<<" ";
}
for(int k=1 ; k<=x; k++)
{
cout<<"*";
}
x+=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
高湘庭
時間:
2024-6-22 14:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1;i<=3;i++)
{
for(int j=1;j<=3-i;j++)
{
cout<<" ";
}
for(int k=1;k<=2*i+3;k++)
{cout<<"*";}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-6-22 14:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
for(int i=3; i<=5; i++)
{
for(int j=4; j>=i; j--)
{
cout<<" ";
}
for(int k=1; k<=x; k++)
{
cout<<"*";
}
x+=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-6-22 15:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=5;
for(int i=1;i<=3 ;i+=1){
for(int j=2; j>=i; j--){
cout<<" ";
}
for(int k=1; k<=a; k++){
cout<<"*";
}
a+=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-6-22 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=9;
for(int i=1; i<=3; i++)
{
for(int j=i; j<=2; j++)
{
cout<<" ";
}
for(int k=5; k<=x; k++)
{
cout<<"*";
}
x+=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-6-22 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=5;
for(int i=1;i<=3;i++)
{
for(int j=2;j>=i;j--)
{
cout<<" ";
}
for(int k=1;k<=x;k++)
{
cout<<"*";
}
x+=2;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-6-22 15:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main (){
for(int i=1;i<=3;i++)
{
for(int j=2;j>=i;j--)
{
cout<<" ";
}
for(int k=1;k<=3+i*2;k++)
{
cout<<"*";
}cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2