Just trying to display something basic on SC3, and when run on the emulator this result is incomplete, BUT it works on the real calc.
Code:
D is 15
M is 27
S is 6.3
Answer SHOULD be 15.45175
When run on the emulator, it just shows "15"
When run on the REAL calc, it shows "15.45175"
Code:
ClrHome
Input "Enter DEGREES: ",D
Input "Enter MINUTES: ",M
Input "Enter SECONDS: ",S
1/60→X
Output(4,1,"^^o"
Output(4,4,(XS+M)X+D
Pause
D is 15
M is 27
S is 6.3
Answer SHOULD be 15.45175
When run on the emulator, it just shows "15"
When run on the REAL calc, it shows "15.45175"