標題:
[作業] _sleep()函式應用
[打印本頁]
作者:
王瑞喻
時間:
2021-6-12 13:20
標題:
[作業] _sleep()函式應用
以下兩個主題擇一完成即可,你要兩個都完成也可以喔!
(1) 利用_sleep()函式任意創作一個程式作品或動畫
(2) 新年倒數:請參考執行檔寫出程式碼
[attach]11866[/attach]
作者:
王晏璿
時間:
2021-6-12 15:43
//新年倒數
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int speed=1000;
for(int i=5; i>=1; i=i-1)
{
if(i==5)
cout<<"5!";
if(i==4)
cout<<"4!";
if(i==3)
cout<<"3!";
if(i==2)
cout<<"2!";
if(i==1)
cout<<"1!";
_sleep(speed);
system("cls");
}
for(int j=1; j<=time(NULL); j=j+1)
{
cout<<"☆★☆!!!Happy New Year!!!☆★☆";
_sleep(speed);
system("cls");
cout<<"★☆★!!!Happy New Year!!!★☆★";
_sleep(speed);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
盧禹廷
時間:
2021-6-12 15:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int speed=1000;
for(int i=1; i<=18; i++)
{
if(i==1)
cout<<"15"<<endl;
if(i==2)
cout<<"14"<<endl;
if(i==3)
cout<<"13"<<endl;
if(i==4)
cout<<"12"<<endl;
if(i==5)
cout<<"11"<<endl;
if(i==6)
cout<<"10"<<endl;
if(i==7)
cout<<"9"<<endl;
if(i==8)
cout<<"8"<<endl;
if(i==9)
cout<<"7"<<endl;
if(i==10)
cout<<"6"<<endl;
if(i==11)
cout<<"5"<<endl;
if(i==12)
cout<<"4"<<endl;
if(i==13)
cout<<"3"<<endl;
if(i==14)
cout<<"2"<<endl;
if(i==15)
cout<<"1"<<endl;
if(i==16)
cout<<"☆★☆新年快樂☆★☆"<<endl;
if(i==17)
cout<<"★☆☆新年快樂☆☆★"<<endl;
if(i==18)
cout<<"☆☆★新年快樂★☆☆"<<endl;
_sleep(speed);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
秉宏1
時間:
2021-6-16 11:10
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int speed=1000;
for(int c=5; c>=1;c--)
{
if(c==5)
cout<<"5!";
if(c==4)
cout<<"4!";
if(c==3)
cout<<"3!";
if(c==2)
cout<<"2!";
if(c==1)
cout<<"1!";
_sleep(speed);
system("cls");
}
for(int a=1; a<=time(NULL); a++)
{
cout<<"☆★☆!!!新年快樂!!!☆★☆";
_sleep(speed);
system("cls");
cout<<"★☆★!!!新年快樂!!!★☆★";
_sleep(speed);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
夏子甯
時間:
2021-6-17 21:22
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
int speed=1000;
for(int x=5; x>=1; x--)
{
if(x==5)
cout<<"5!"<<endl;
if(x==4)
cout<<"4!"<<endl;
if(x==3)
cout<<"3!"<<endl;
if(x==2)
cout<<"2!"<<endl;
if(x==1)
cout<<"1!"<<endl;
_sleep(speed);
system("cls");
}
for(int y=1; y<=time(NULL); y++)
{
cout<<"★☆★!!!新年快樂!!!★☆★"<<endl;
_sleep(speed);
system("cls");
cout<<"☆★☆!!!Happy New Year!!!☆★☆"<<endl;
_sleep(speed);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
黃泰來
時間:
2021-6-19 08:13
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int speed=1000;
for(int i=5; i>=1; i=i-1)
{
if(i==5)
cout<<"5!";
if(i==4)
cout<<"4!";
if(i==3)
cout<<"3!";
if(i==2)
cout<<"2!";
if(i==1)
cout<<"1!";
_sleep(speed);
system("cls");
}
for(int j=1; j<=time(NULL); j=j+1)
{
cout<<"☆★☆!!!Happy New Year!!!☆★☆";
_sleep(speed);
system("cls");
cout<<"★☆★!!!Happy New Year!!!★☆★";
_sleep(speed);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
曾俊儒
時間:
2021-6-19 10:16
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int y = 5;
for(int u = 0;u<5;u++)
{
cout<<y<<"!"<<endl;
_sleep(1000);
y--;
system("cls");
}
string star[3] = {"★","☆","★"};
string star1[3] = {"★","☆","★"};
re:
for(int i = 0;i<3;i++)
{
cout<<star[i];
}
cout<<"happy new year";
for(int c = 0;c<3;c++)
{
cout<<star1[c];
}
_sleep(1000);
string a;
a = star[0];
star[0] = star[1];
star[2] = star[1];
star[1] = a;
string b;
b = star1[0];
star1[0] = star1[1];
star1[2] = star1[1];
star1[1] = b;
system("cls");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄞美旭
時間:
2021-6-19 11:20
本帖最後由 鄞美旭 於 2021-6-19 13:54 編輯
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
cout<<i<<"!"<<endl;
_sleep(1000);
system("cls");
} while(true)
{
cout<<"☆★☆Happy New Year☆★☆"<<endl;
_sleep(1000);
system("cls");
cout<<"★☆★Happy New Year★☆★"<<endl;
_sleep(1000);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
睿呈
時間:
2021-6-19 12:07
#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
int speed=1000;
for(int i=1; i<=5; i++)
{
if(i==1)
cout<<"5!"<<endl;
if(i==2)
cout<<"4!"<<endl;
if(i==3)
cout<<"3!"<<endl;
if(i==4)
cout<<"2!"<<endl;
if(i==5)
cout<<"1!"<<endl;
_sleep(speed);
system("cls");
}
for(int x=1; x<=time(NULL);x++)
{
cout<<"***Happy new year***"<<endl;
_sleep(speed);
system("cls");
cout<<"***Happy new year***"<<endl;
_sleep(speed);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
林孟霆
時間:
2021-6-19 13:57
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
for(int i=5; i>=1; i++)
{
cout<<i<<"!"<<endl;
_sleep(1000);
system("cls");
}
while(true)
{
cout<<"~~~ Happy New Year ~~~"<<endl;
_sleep(1000);
system("cls");
cout<<"~~~ Happy New Year ~~~"<<endl;
_sleep(1000);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
林佑豪
時間:
2021-6-19 14:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
cout<<i<<"!"<<endl;
_sleep(1000);
system("cls");
}
while(true)
{
cout<<"☆★☆Happy New Year ☆★☆"<<endl;
_sleep(1000);
system("cls");
cout<<"★☆★Happy New Year ★☆★"<<endl;
_sleep(1000);
system("cls");
}
system("pause");
return 0;
}
複製代碼
作者:
洪子紜
時間:
2021-6-19 14:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
cout<<i<<"!"<<endl;
_sleep(1000);
system("cls");
}
while(true)
{
cout<<"☆★☆新年快樂☆★☆"<<endl;
_sleep(1000);
system("cls");
cout<<"★☆☆新年快樂☆☆★"<<endl;
_sleep(1000);
system("cls")
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2