標題:
小星星 1
[打印本頁]
作者:
tonyh
時間:
2019-7-6 10:32
標題:
小星星 1
試運用巢狀迴圈完成以下圖案:
#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=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾宥程
時間:
2019-7-6 10:39
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1 ; i<=5 ; i++)
{
for(int j=1 ; j<=i ; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-7-6 10:40
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-7-6 10:40
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-7-6 10:42
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-7-11 16:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉愷恩
時間:
2019-7-13 09:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-7-13 11:47
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-5-14 16:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=5;i+=1)
{
for(int j=1;j<=i;j+=1)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2