本帖最後由 陳柏霖 於 2018-12-7 20:12 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- re:
- for(int i=1; i<=6; i++)
- {
- if(i==1)
- {
- cout<<"㊣㊣㊣ ";
- }
- if(i==2)
- {
- cout<<" ㊣㊣㊣ ";
- }
- if(i==3)
- {
- cout<<" ㊣㊣㊣ ";
- }
- if(i==4)
- {
- cout<<" ㊣㊣㊣";
- }
- if(i==5)
- {
- cout<<" ㊣㊣㊣ ";
- }
- if(i==6)
- {
- cout<<" ㊣㊣㊣ ";
- }
- _sleep(300);
- system("cls");
- }
- goto re;
- system("pause");
- return 0;
- }
複製代碼 |