Countdown watch | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Countdown watch

i want to make a countdown watch for multiple methods or tasks for 10seconds. which show the time in decreasing order.. so how to build logic.. any one have any idea please enlighten me... in java for timer

4th Mar 2017, 7:44 PM
Pratul Tripathi
Pratul Tripathi - avatar
2 Answers
+ 1
import time import os max=int(input("Enter WORKOUT time:")) rest=int(input("Enter rest time:")) w=int(input("Enter Reps :")) max+=1 rest+=1 while(w>0): count=0 while count < max: time.sleep(1) count+=1 os.system('clear') a=max-count print('\n'*5+'\t\t '+str(a)) count2=0 while count2 < rest: time.sleep(1) count2+=1 os.system('clear') b=rest-count2 print('\n'*5+'\t\t '+str(b)) #this one I've made for a workout #plan #Python
5th Mar 2017, 6:09 AM
vishnu
vishnu - avatar
0
Thanks dude
5th Mar 2017, 8:04 PM
Pratul Tripathi
Pratul Tripathi - avatar