view ply-3.8/example/BASIC/maxsin.bas @ 7667:9d9cd8cbb8b5

<moon__> ` mkx bin/userweps//echo boily has the mapole, oerjan has the swatter, moon__ has the snail cannon, /me is a motherfucking walrus, what else is there?
author HackBot
date Tue, 03 May 2016 00:47:32 +0000
parents 343ff337a19b
children
line wrap: on
line source

5 PRINT "X VALUE", "SINE", "RESOLUTION"
10 READ D
20 LET M = -1
30 FOR X = 0 TO 3 STEP D
40 IF SIN(X) <= M THEN 80
50 LET X0 = X
60 LET M = SIN(X)
80 NEXT X
85 PRINT X0, M, D
90 GOTO 10
100 DATA .1, .01, .001
110 END