標題:
[隨堂測驗] 小星星 4
[打印本頁]
作者:
李泳霖
時間:
2021-1-30 20:23
標題:
[隨堂測驗] 小星星 4
利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(____________)
{
for(____________)
{
cout<<" ";
}
for(____________)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
作者:
馬琮翰
時間:
2021-2-2 17:16
本帖最後由 馬琮翰 於 2021-2-2 17:19 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=i; j>=2; j--)
{
cout<<" ";
}
for(int h=1; h<=10; h++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃峻偉
時間:
2021-4-1 17:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟軒
時間:
2021-10-28 18:58
#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 k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李睿宸
時間:
2022-5-13 18:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=0;j<=i-2;j++)
{
cout<<" ";
}
for(int s=1;s<=10;s++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
俞經典
時間:
2022-5-28 13:59
#include<iostream>
using namespace std;
int main()
{
for(int c=1;c<=4;c++)
{
for(int space=2;space<=c;space++)
{
cout<<" ";
}
for(int star=1;star<=10;star++)
{
cout<<"*";
}
cout<<endl;
}
}
複製代碼
作者:
若晴
時間:
2022-6-14 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=4; i>=1; i--)
{
for(int j=1; j<=4-i; j++)
{
cout<<" ";
}
for(int k=1; k<=10; k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王廷悠
時間:
2022-7-7 16:34
本帖最後由 王廷悠 於 2022-7-7 16:45 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=1; j<=i-1; j++)
{
cout<<" ";
}
for(int k=1; k<=10; k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林昕霓
時間:
2022-7-7 16:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=i; j<=3; j++)
{
cout<<" ";
}
for(int p=10; p>=1; p--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳舒彤
時間:
2022-7-7 16:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int k=1;k<=10;k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張鈊喬
時間:
2022-7-7 16:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int s=1;s<=i-1;s++)
{
cout<<" ";
}
for(int h=1;h<=10;h++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳柏潁
時間:
2022-8-6 09:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1;i<=4;i+=1)
{
for(int j=2;j<=i;j+=1)
{
cout<<" ";
}
for(int k=1;k<=10;k+=1)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡博丞
時間:
2023-3-31 21:28
#include <iostream>
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;
}
return 0;
}
複製代碼
作者:
陳郁媗
時間:
2023-4-16 23:12
#include<iostream>
using namespace std;
int main()
{
for(int i=1; i<=4; i++)
{
for(int j=0; j<i;j++)
{
cout<<" ";
}
for(int k=10; k>=1; k--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳政軒
時間:
2023-12-13 16:46
#include<iostream>
using namespace std;
int main(){
for(int i=1;i<=4;i++)
{
for(int j=i-1;j>0;j--)
cout<<' ';
for(int k=1;k<=10;k++)
cout<<'*';
cout<<'\n';
}
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2024-5-18 11:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=4;i>=1;i--)
{
for(int j=1;j<=4-i;j++)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉冠毅
時間:
2024-5-18 11:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
何若恩
時間:
2024-8-23 18:30
#include <iostream>
using namespace std;
int main(int argc, char** argv) {
for(int i = 1;i<=4;i++)
{
for(int j = 1;j<=i-1;j++)
{
cout<<" ";
}
for(int j = 1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
return 0;
}
複製代碼
作者:
蔡梁新
時間:
2024-8-23 20:48
#include <iostream>
using namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i-1;j++)
{
cout<<" ";
}
for(int j=1;j<=10;j++)
{
cout<<"*";
}
cout<<endl;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2