+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2008
    Location
    ATX
    Posts
    1,545
    Points
    1,589,948.65
    Rep Power
    219

    Default [Calc] Fahrenheit <-> Celsius converter

    Yeah, so this seems to be a popular program to make so i just whipped it up for fun. Here y'all go, report any bugs you see because I haven't tested this one out yet.
    Code:
    :"Temperature converter
    ClrHome
    0üáTCON(1)
    Output(4,1,"  Temperature   "
    Output(5,1,"   Converter    "
    Output(8,1,"        By WMD54"
    For(A,1,1000
    End
    ClrHome
    Menu("I have...","Fahrenheit",1,"Celsius",2)
    Lbl 1
    1üáTCON(1)
    Disp "Temperature in"
    Input "Fahrenheit:",F
    (5/9)(F-32)üC
    Disp C," Degrees Celsius"
    Pause 
    ClrHome
    Goto 3
    Lbl 2
    2üáTCON(1)
    Disp "Temperature in"
    Input "Celsius:",C
    (9/5)C+32üF
    Disp F,"         Degrees","      Fahrenheit"
    Pause 
    ClrHome
    Goto 3
    Lbl 3
    Menu("Again?","Yes",4,"Other unit",5,"No",6)
    Lbl 4
    If áTCON(1)=1
    Then
    ClrHome
    Goto 1
    End
    If áTCON(1)=2
    Then
    ClrHome
    Goto 2
    End
    Lbl 5
    If áTCON(1)=1
    Then
    ClrHome
    Goto 2
    End
    If áTCON(1)=2
    Then
    ClrHome
    Goto 1
    End
    Lbl 6
    ClrHome
    Stop

  2. #2
    Join Date
    Jul 2008
    Location
    in front of my PC
    Posts
    568
    Points
    1,019,497.00
    Rep Power
    210

    Default

    Tht'S NiCe GoOD JoB
    ALL MY CODES
    PSP Slim Emulators
    Phat PSP emulators
    SNES's Roms
    InStalling NitePr on your PSP guide
    MAD Industries : rofl
    Dark prince HS : so u r a dummy of a dummy lol
    DFZ : grimm read mips for dummies and taught me
    WhoIsYou : MIPS for dummies really helped dfz and grimm out -_-:
    Dark prince HS:im glad 2 hear that
    Dark prince HS: lol
    jbiscutman: and i always have the hold like mds on
    jbiscutman:like ur epdd is freakin awsome
    jbiscutman: most of the hacks i use r urs

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts