How to resolve the algorithm Draw a clock step by step in the Locomotive Basic programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Draw a clock step by step in the Locomotive Basic programming language
Table of Contents
Problem Statement
Draw a clock.
More specific:
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Draw a clock step by step in the Locomotive Basic programming language
Source code in the locomotive programming language
10 mode 1:defint a-y:deg
20 input "Current time (HH:MM)";t$
30 h=val(mid$(t$,1,2))
40 m=val(mid$(t$,4,2))
50 cls
60 r=150:s=-1
70 ph=0:pm=0
80 origin 320,200
90 for a=0 to 360 step 6
100 if a mod 30>0 then z=.9 else z=.8
110 move z*r*sin(a),z*r*cos(a)
120 draw r*sin(a),r*cos(a)
130 next
140 move 0,r
150 for a=0 to 360 step 6
160 draw r*sin(a),r*cos(a)
170 next
180 every 50 gosub 220
190 ' ENDLESS_LOOP
200 goto 200
210 ' NEW_SEC
220 s=s+1
230 if s=60 then s=0:m=m+1
240 if m=60 then m=0:h=h+1
250 if h=24 then h=0
260 if s=0 then gosub 300
270 if s>0 then gosub 420
280 return
290 ' DRAW_ALL
300 locate 1,1
310 print using "##";h;
320 print ":";
330 print using "##";m;
340 frame:move 0,0:draw .5*r*sin(ph),.5*r*cos(ph),0,0
350 frame:move 0,0:draw .7*r*sin(pm),.7*r*cos(pm),0,0
360 frame:move 0,0:draw .8*r*sin(6*59),.8*r*cos(6*59),0,0
370 pm=6*m
380 frame:move 0,0:draw .7*r*sin(pm),.7*r*cos(pm),1,0
390 ph=30*h+.5*m
400 frame:move 0,0:draw .5*r*sin(ph),.5*r*cos(ph),1,0
410 ' DRAW_SEC
420 a=6*s
430 ' uses "frame" and XOR ink mode for drawing -- requires BASIC 1.1
440 if a>0 then frame:move 0,0:draw .8*r*sin(a-6),.8*r*cos(a-6),3,1
450 frame:move 0,0:draw .8*r*sin(a),.8*r*cos(a),3,1
460 return
You may also check:How to resolve the algorithm Include a file step by step in the PowerBASIC programming language
You may also check:How to resolve the algorithm Polynomial long division step by step in the Python programming language
You may also check:How to resolve the algorithm Retrieve and search chat history step by step in the Wren programming language
You may also check:How to resolve the algorithm Hash from two arrays step by step in the Haskell programming language
You may also check:How to resolve the algorithm Memory allocation step by step in the Nanoquery programming language