標題:
跑馬燈 (四)
[打印本頁]
作者:
陳品肇
時間:
2019-4-11 14:34
標題:
跑馬燈 (四)
本帖最後由 陳品肇 於 2019-4-13 14:59 編輯
使文字訊息在畫面上反覆地左右移動.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int j=0; //1 2 3 4....150印空白的數量
for(int i=1;i<=300;i++) //來回的動畫
{
if(i>=1 && i<=150 && i%3==0) //往右的格子 (123) 6 9
{
j++;
}
if(i>=151 && i<=300 && i%3==0)
{
j--;
}
for(int k=1;k<=j;k++) //印空白
{
cout<<" ";
}
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-4-13 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int k=0;
for(int i=1; i<=300; i++)
{
if(i>=1 && i<=150 && i%3==0)
{
k++;
}
if(i>=151 && i<=300 && i%3==0)
{
k--;
}
for(int i=1;i<=k;i++)
{
cout<<" ";
}
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-4-13 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int j=0;
for(int i=1;i<=300;i++)
{
if(i>=1 && i<=150 && i%3==0)
{
j++;
}
if(i>=151 && i<=300 && i%3==0)
{
j--;
}
for(int k=1;k<=j;k++)
{
cout<<" ";
}
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-4-13 15:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int j=0;
for(int i=1;i<=300;i++)
{
if(i>=1 && i<=150 && i%3==0)
{
j++;
}
if(i>=151 && i<=300 && i%3==0)
{
j--;
}
for(int k=1;k<=j;k++)
{
cout<<" ";
}
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-4-13 15:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int j=0;
for(int i=1;i<=300;i++)
{
if(i>=1 && i<=150 && i%3==0)
{
j++;
}
if(i>=151 && i<=300&& i%3==0)
{
j--;
}
for(int k=1;k<=j;k++)
{
cout<<" ";
}
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-4-13 15:07
#include<iostream> //☆★◇◆□■▽▼㊣℅¯>﹤㏒
#include<cstdlib>
using namespace std;
int main()
{
re:
//alt+41405=■,alt+41404=□;
int j=0;
for(int i=1; i<= 300; i++)
{
if(i>=1 && i<=150 && i%3==0)
{
j++;
}
if(i>=151 && i<=300 && i%3==0)
{
j--;
}
for(int i=1; i<= j; i++)
{
cout<<" ";
}
cout<<"▽歡迎光迎▽";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2019-4-13 15:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int j=0;
for(int i=1;i<=300;i++)
{
if(i>=1 && i<=150 && i%3==0)
{
j++;
}
if(i>=151 && i<=300 && i%3==0)
{
j--;
}
for(int k=1;k<=j;k++)
{
cout<<" ";
}
cout<<"歡迎光臨";
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱全
時間:
2019-4-19 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n=0;
for(int i=1;i<=140;i++)
{
if(i<=70)
n++;
else
n--;
for(int j=1;j<=n;j++)
{
cout<<" ";
}
cout<<"歡迎光臨";
_sleep(300);
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2019-4-20 12:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int n=0;
for(int i=1;i<=40;i++)
{
if(i<=20)
n++;
else
n--;
for(int j=0;j<=n;j++)
{
cout<<" ";
}
cout<<"歡迎光臨"<<endl;
_sleep(100);
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-4-27 12:17
本帖最後由 曲書辰 於 2019-4-27 13:01 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[]={0,1,2,3,4,5,6,7,6,5,4,3,2,1,0};
re:
for(int j=0; j<15; j++)
{
for(int i=0; i<a[j]; i++)
cout<<" ";
cout<<"歡迎光臨";
_sleep(50);
system("cls");
}
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2