Circle -------------------------------------------------------- Version: 1.1, 980323 Creator: Daniel Bergman. Description: The program calculates different measures on circles, based on the radius. Comments: "->" is the "STO>"-button, "<= is "smaller or equal"-sign. "#" is pie, "\/" is the square root. "^2" & "^3" are the small "raised to" digits. Known bugs: None. Size: ca 207 bytes. For more games and programs, please visit http://ti80.burtrask.net. PROGRAM:CIRCLE INPUT "R?",R IF R<=0:STOP DISP "CIRCLE" DISP "CIRCUM",2#R DISP "AREA",#R2 INPUT "HEIGHT?",H IF H<=0:STOP DISP "CYLINDER" DISP "VOL",#R^2 DISP "AREA",2#R(H+R) PAUSE DISP "SPHERE" DISP "VOL",4#R^3/3 DISP "AREA",.4#R^2 PAUSE \/(R^2+H^2->S DISP "CONE" DISP "VOL",R^2#H/2 DISP "AREA",#RS -------------------------------------------------------------------- Copyright (C) 1998 by Daniel Bergman & Mattias Morén http://ti80.burtrask.net