tagliatelle
_____________________
5
Print " Software For Your Music"
Print " Made By Hervé Hinnekens"
print "Numbers Of Songs"
input k
IF k < 1 THEN
GOTO 5
END IF
x = 1
1
Print "Duration From This Song In Hours"; x
input a
print "Duration From This Song In Minutes"
input b
print "Duration From This Song In Seconds"
input c
IF b > 59 THEN
GOTO 1
END IF
IF c > 59 THEN
GOTO 1
END IF
IF b < 0 THEN
GOTO 1
END IF
IF c < 0 THEN
GOTO 1
END IF
d = d - -(a * 3600 - -b * 60 - -c)
e = Int(d / 3600)
f = Int(d / 60) - (e * 60)
g = d - (e * 3600) - (f * 60)
IF k = 1 THEN
GOTO 2
END IF
k = k - 1
x = x - -1
GOTO 1
2
Print "The Duration From The Cd Is"; e; "Hours"; f; "Minutes"; g; "Seconds."
print "A Little Number To Stop The Software"
input s
End
Print " Software For Your Music"
Print " Made By Hervé Hinnekens"
print "Numbers Of Songs"
input k
IF k < 1 THEN
GOTO 5
END IF
x = 1
1
Print "Duration From This Song In Hours"; x
input a
print "Duration From This Song In Minutes"
input b
print "Duration From This Song In Seconds"
input c
IF b > 59 THEN
GOTO 1
END IF
IF c > 59 THEN
GOTO 1
END IF
IF b < 0 THEN
GOTO 1
END IF
IF c < 0 THEN
GOTO 1
END IF
d = d - -(a * 3600 - -b * 60 - -c)
e = Int(d / 3600)
f = Int(d / 60) - (e * 60)
g = d - (e * 3600) - (f * 60)
IF k = 1 THEN
GOTO 2
END IF
k = k - 1
x = x - -1
GOTO 1
2
Print "The Duration From The Cd Is"; e; "Hours"; f; "Minutes"; g; "Seconds."
print "A Little Number To Stop The Software"
input s
End