標題:
小星星 2-倒三角形1
[打印本頁]
作者:
鄭繼威
時間:
2022-6-15 03:38
標題:
小星星 2-倒三角形1
本帖最後由 鄭繼威 於 2022-7-13 20:39 編輯
#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;
}
複製代碼
作者:
黃柏青
時間:
2022-6-22 19:49
#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;
}
複製代碼
作者:
李彣
時間:
2022-6-22 19:55
本帖最後由 李彣 於 2022-6-22 20:28 編輯
#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;
}
複製代碼
作者:
黃裕恩
時間:
2022-6-29 18:42
#include <iostream>
#include <cstdlib>
using namespace std;
int main(){
for(int i=5; i>=1; i--){
for(int j=i; j>=1; j--){
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2022-6-29 18:52
#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;
}
複製代碼
作者:
林劭澧
時間:
2022-7-6 20:51
#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;
}
複製代碼
作者:
林劭杰
時間:
2022-7-6 20:51
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2