Decimal To Binary Converter Program TI-84 Plus CE

Sdílet
Vložit
  • čas přidán 22. 08. 2024

Komentáře • 4

  • @boominonthetrack75
    @boominonthetrack75 Před 3 měsíci

    I LOVE YOU BROSKI! God Bless you

  • @rodolfoaguirre6953
    @rodolfoaguirre6953 Před 11 měsíci

    Thank you so much. It works very well.

  • @totallywhosyou6139
    @totallywhosyou6139 Před 11 měsíci +1

    First

  • @matthewcornelius5862
    @matthewcornelius5862 Před 4 měsíci

    I have been trying to use Chat GPT to program this thing and it has no idea how to follow syntax rules. either way, here is my program:
    PROGRAM:EMCALC
    :Disp "Enter SFM:"
    :Prompt S
    :Disp "Enter Tool Diameter (in inches):"
    :Prompt D
    :Disp "Enter Chip Load per Tooth (in inches):"
    :Prompt C
    :Disp "Enter Number of Teeth:"
    :Prompt T
    :
    :R=(S*12)/(π*D)
    :X=(C*T)
    :F=(X*R)
    :
    :Disp "RPM AND FEEDRATE:"
    :Disp R
    :Disp F
    I cannot get it to display or even calculate F. what am I doing wrong?