移動的時鍾
發布時間: 2021-02-11 20:01:08
❶ 求一款可以移動報時的時鍾軟體。
如意工具箱里有定時提醒工具
❷ 想編一個會動的時鍾,但我的指針不是慢慢的移動,而是跨越式的移動,那裡錯了
#include"graphics.h"
#definePI3.1416
#include"math.h"
#include"dos.h"
main()
{
intx0=320,y0=240,r0=150;
voidinit_sceen();
voidsec();
init_sceen(x0,y0,r0);
sec();
closegraph();
}
voidinit_sceen(intx0,inty0,intr0)/********************************************/
{
inti,x,y,graphdriver,graphmode;
chars[10];
floatalpha,a0=90;
graphdriver=DETECT;
initgraph(&graphdriver,&graphmode,"");
setbkcolor(3);
setcolor(2);
circle(x0,y0,r0);
circle(x0,y0,r0+30);
setfillstyle(SOLID_FILL,10);
floodfill(x0-r0-10,y0,2);
/*pleaseinputthetime*/
for(i=12;i>=1;i--)
{
alpha=(a0+30*(11-i)*PI/180);
x=x0+cos(alpha)*r0-16;
y=y0-sin(alpha)*r0;
sprintf(s,"%2d",i);
setcolor(4);
settextstyle(0,0,2);
outtextxy(x,y,s);
}
/*inputsecond*/
for(i=60;i>=1;i--)
{
alpha=(a0+6*(60-i)*PI/180);
x=x0+cos(alpha)*(r0-20);
y=y0-sin(alpha)*(r0-20);
setcolor(14);
if(i%5==0)
circle(x,y,5);
elsecircle(x,y,2);
floodfill(x,y,14);
}
setlinestyle(0,0,3);
}
voidsec(void)/******************************************************************/
{
intx,y,i,j,k,xj,yj,xk,yk,xi,yi,x0=320,y0=240,r0=150;
unionREGSr;
unsignedchar*shijie="";
unsignedchar*daa="";
structtimetim;
structdatedat;
floatalphai,alphak,alphaj,a0=90;
xi=x0;yi=y0;xj=x0;yj=y0;xk=x0;yk=y0;
do
{
/*intputthetime*/
x=38;y=12;
gettime(&tim);
sprintf(shijie,"%02d:%02d:%02d",tim.ti_hour,tim.ti_min,tim.ti_sec);
setfillstyle(SOLID_FILL,0);
bar(245,190,375,210);
setcolor(15);
outtextxy(245,190,shijie);
/*inputthedate*//*****************************************************/
getdate(&dat);
sprintf(daa,"%02d--%02d--%02d",dat.da_year,dat.da_mon,dat.da_day);
/*setfillstyle(SOLID_FILL,3);*/
bar(225,290,395,310);
setcolor(RED);
outtextxy(225,290,daa);
x=190;y=430;
setcolor(RED);
outtextxy(x-26,y,"DesignedbyGuoLiuTa0");
setcolor(LIGHTRED);
outtextxy(x+76,y0+20,"NBAGAME");
setlinestyle(0,0,3);
k=tim.ti_hour;
j=tim.ti_min;
i=tim.ti_sec;
alphak=(a0+30*(12-k)-j*5/60.*6)*PI/180;
alphaj=(a0-6*j)*PI/180;
/*writesecondhand*/
alphai=(a0+6*(60-i))*PI/180;
x=x0+cos(alphai)*(r0-32);
y=y0-sin(alphai)*(r0-32);
setcolor(BLACK);
line(x0,y0,xi,yi);
setcolor(YELLOW);
line(x0,y0,x,y);
xi=x;
yi=y;
/*writeminutehand*/
x=x0+cos(alphaj)*(r0-60);
y=y0-sin(alphaj)*(r0-60);
setcolor(BLACK);
line(x0,y0,xj,yj);
setcolor(BLUE);
line(x0,y0,x,y);
xj=x;
yj=y;
/*writehourhand*/
x=x0+cos(alphak)*(r0-99);
y=y0-sin(alphak)*(r0-99);
setcolor(BLACK);
line(x0,y0,xk,yk);
setcolor(RED);
line(x0,y0,x,y);
xk=x;
yk=y;
delay(10000);
}
while(!());
}
❸ 仔細想想時鍾的時針和分針的移動規律
分針的移動360°,時針移動30° .
❹ 中國移動手機怎樣設置時鍾
中國移動手機設置時鍾方法:1.在手機的界面,點擊時鍾—鬧鍾,即可查看當前的鬧鍾;2.若想要添加鬧鍾,在鬧鍾界面,點擊添加鬧鍾,然後設置好相關的信息,點擊確定即可。具體以手機說明書為准。
❺ 時鍾的表針移動是平移現象.______
因為時鍾上時針、分針、秒針的運動是圍繞表芯一圈一圈轉動的,屬於旋轉現象.
所以題干說法錯誤.
故答案為:錯誤.
❻ 鍾表上時針和分針的移動.______.
鍾表上時針和分針的移動,屬於旋轉現象;
故答案為:○.
❼ 中國移動手機時間怎麼設置
中國移動手機設置時鍾,直接在桌面點擊那個時間,就會出現時間選項。
或者點擊手機 設置,系統設置,日期和時間,就可以看到時間設置選項。
熱點內容