ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
432 B

  1. 10 REM NAME OF MONTH
  2. 20 REM
  3. 25 DIM A$(150)
  4. 27 DIM M$(25)
  5. 30 LET A$="320125799653785534469788JANUARYFEBRUARYMARCHAPRILMAYJUNEJULYAUGUSTSEPTEMBEROCTOBERNOVEMBERDECEMBER"
  6. 40 INPUT A
  7. 50 LET M$=MID$(A$,(A*6+22-VAL(MID$(A$,A,1))),VAL(MID$(A$,A+12,1)))
  8. 60 PRINT M$
  9. 70 REM ***********************************
  10. 80 REM APPEARED IN ASTRONOMICAL COMPUTING
  11. 90 REM SKY & TELESCOPE, OCTOBER 1984 ISSUE
  12. 100 REM **********************************