Factoring, How to Make a Calculator Program

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 261

  • @extramore91
    @extramore91 3 місяці тому +1

    You saved my life my first go round in college when these first dropped. And now I’m circling back. Full circle! ⭕️ 😊

  • @MrKlyde44
    @MrKlyde44 11 років тому +1

    I didn't pause throughout the whole video, and the programed turned out perfect. New achievement!!!

  • @wandapetty9776
    @wandapetty9776 7 років тому

    It took me a minute (actually hours of looking at your video, and clearing it several times), but I got it! Thank you so much! Determination Works!

  • @HectorRodriguez-pc5vp
    @HectorRodriguez-pc5vp 10 років тому +2

    Dude, works perfect! Large AC method numbers? Just enter the resust and look for a pair space apart by the middle term! God damn life saver! Thx for posting!

  • @kevinduffy3692
    @kevinduffy3692 8 років тому

    Thanks. One of best programming videos on Ti 84. Much. Better than anything provided by Ti

  • @PuffinFactory
    @PuffinFactory 11 років тому +3

    This edited program allows for more parts to be added to your program if needed :D
    Prompt N
    {1}->L1
    {N}->L2
    2->B
    Lbl A
    If B(greater than or equal to) N/B
    Then
    Goto B
    Else
    If N/B=int(N/B)
    Then
    augment(L1,{B})->L1
    augment({N/B},L2)->L2
    B+1->B
    Goto A

  • @lovethisworld
    @lovethisworld 7 років тому

    Thanks for the video, great explanation of the keys and locations, better then some others I've seen.

  • @paxtongrant2993
    @paxtongrant2993 12 років тому

    Hey dude love this dam video you save my life am not that good at math so whenever am factoring it will take me forever to find all the factors of a number now its as easy as one button thanks for the video.

  • @water2621112
    @water2621112  12 років тому

    regarding the invalid dim error, check to make sure the dimensions of the lists being created/augmented are correct, that's the only reason I can find that an invalid dim error would appear. as far as the quadratic that is the right answer. factored it is (x - 4)(x + 3), the roots are -3 and 4. the quadratic formula finds the ROOTS, not the factors

  • @water2621112
    @water2621112  12 років тому

    in all practicality it's easier to recognize that each number in the list can be negative for that case but it didn't make sense to increase the program's length to include that option. it's much easier to just know that it can be instead.

  • @JPxKillz
    @JPxKillz 12 років тому

    Thanks mate, everything's great. Only thing I'd add is more explanation on why you did what you did, like if statement arguments and such, don't worry about the video length at all.

  • @RebeccaLaird
    @RebeccaLaird 11 років тому +1

    Thank you for the very easy to understand video! (I'm a musician, I'm not supposed to know how this stuff works!) I do have one question though. I used the same numbers that you did in the example at the end of your video, and all of them worked except the number 27. It only lists 1 and 27 as factors and leaves out the 3 and 9. Could I have made an error in the code? Is there any way that I can go back to check and edit if I need to?

  • @water2621112
    @water2621112  11 років тому

    The only things I can think would be wrong would be a missing line/expression. If it is quitting then something is wrong in the process of iteration. Check that and see if there is something to be found.

  • @Oriely557
    @Oriely557 10 років тому +1

    you are quite the BAE. U is da realist dawg ive ever met

    • @LylyNynx
      @LylyNynx 9 років тому

      +John Pangli lol

  • @pavpat3k
    @pavpat3k 4 роки тому

    Never mind it worked I got a bracket confused with a parenthesis lol. Thank you !!

  • @water2621112
    @water2621112  12 років тому

    after you name the program you hit enter to bring up the code writing bit.
    if you want to exit out of the code writing just hit second and mode

  • @naomi-and-the-sun
    @naomi-and-the-sun 10 років тому +1

    That was a lot of work, thanks so much super helpful!! :)

  • @carolinamermaid
    @carolinamermaid 9 років тому +1

    I'm getting an error at the THEN: augment (L1,{B})->L2 error says the parenthesis after B is the error? help please

  • @Turtburglers
    @Turtburglers 11 років тому

    looking at the error message, your program is probably archived. press second then + to go to the calculator's memory. then go to "Mem Mgmt/Del..." and then press 7. This will display all of the programs stored in the calculator's memory, and any programs archived will have a "*" next to the name. scroll down to the program and press enter to unarchive

  • @water2621112
    @water2621112  11 років тому

    Okay, I think I know what's going wrong. Look under Lbl b, since 36 is a perfect square that means that the first part of that section is correct, but the part after the Goto theta is incorrect or missing (as far as I can determine without looking directly at your input). Check there

  • @astroelle8519
    @astroelle8519 3 роки тому

    I don’t know who you are but I love you

  • @kko2007
    @kko2007 11 років тому

    Thanks so much for the video! I have a ti-84 plus C silver edition. When I put in your formula, it works fine, but in the solution set I have solutions like 10.2, or 8.6. They only go to 1 decimal point, but for larger numbers there are a lot of them. Is there a way to add possibly a rational to the real number result to fix this? This may be a new model thing, not sure. For now I just scroll through all of them. Let me know any thoughts! TY

  • @mrsmeliss
    @mrsmeliss 8 років тому

    I followed step by step and though I get all the factors I also get "E theta" following the number. For example "6Etheta" for 6 or "1.2E1" for 12...if that makes sense. I double checked the code and its exact. I have a TI-84 Plus CE
    Thank you for any help you can give me.

  • @TheTeamOfModders
    @TheTeamOfModders 9 років тому

    When programming these what exactly must you know? Must you have prior knowledge from programming other things?

  • @aidanknoll1019
    @aidanknoll1019 7 років тому

    Do you have the source code written out anywhere? I'd like to copy and paste in Texas Instruments Connect and then load it onto the calculator.

  • @davecarr852
    @davecarr852 10 років тому

    I had the done issue with my ti 84 c silver, to fix it, just change the L3 to disp L3, after it, add a goto Z, and add a Lbl Z as the first line of code

    • @jagatthakkar2228
      @jagatthakkar2228 10 років тому

      Dave Carr I have the TI-84 Plus C Silver EditionI watched the video 2 times, and I still get a Syntax Error. I dont get what you mean.

    • @davecarr852
      @davecarr852 10 років тому

      Jagat Thakkar @ 9:18 where he types only L3, change that to Disp L3 and immediatly following that next linecshould read goto Z
      Add Lbl Z as the very first line of code in the program

    • @davecarr852
      @davecarr852 10 років тому

      Jagat Thakkar you may need to add a pause before the goto statement, sometimes it will skip the display if you dont add that

  • @ryanfox5747
    @ryanfox5747 8 років тому

    Before I go an do this whole thing, is it limited to the 2nd degree or can I do up to x^5?

  • @iH85CH001
    @iH85CH001 9 років тому +2

    Thank you so much! you are amazing! I had to do this twice though, I learned that when you clear the memory, (2nd Mem 7-1-2) it deletes all the programs. Is there any possible way to avoid this being deleted?

    • @carter2368
      @carter2368 8 років тому +1

      archive it

    • @iH85CH001
      @iH85CH001 8 років тому

      Carter
      how do you do that?

    • @carter2368
      @carter2368 8 років тому

      2nd, +, 2, 7, then hit enter on what u want archived/unarchived (can't run a program while it's archived)

    • @iH85CH001
      @iH85CH001 8 років тому

      Carter
      Okay, I did that, now if I clear my memory is it gonna delete everything?

    • @carter2368
      @carter2368 8 років тому +1

      +iH85CH001 not what's archived

  • @bouncingghost
    @bouncingghost 6 років тому

    Hi there! I know this is an old video so I am not expecting a response. I did everything step by step, but it appears that my calculator likes to give me decimal factors as well as the normal ones. For example, for 101, It gave me 1 and 101, but also 2, 3, 4, 5, and all their respective decimal multiplicands to get to 101. If I did this on a TI-84 Plus CE, would that have anything to do with it? Thank you!

  • @Beastish32
    @Beastish32 11 років тому

    Hit "Mode"
    Highlight "Pol" (for Polar) and hit "Enter"
    Hit "Exit"
    Your variable key (next to the "alpha" key) will now display theta.

  • @reginam9804
    @reginam9804 8 років тому

    Hi can u help please? When I put a number like 96 to factor I see the list but it won't let me see the rest of the numbers on that list. And yes I have L1 as the last thing on the programThanks again!!

  • @n3gativ3infinity
    @n3gativ3infinity 11 років тому +1

    What key makes the integer N in this program?

  • @water2621112
    @water2621112  11 років тому

    Yes. All my programs are self made and self written

  • @cordelia379
    @cordelia379 12 років тому

    I think it should work tho if I 2nd, STAT, EDIT, right? the lists should come up, so then... i think i found a way to view them, but scrolling would be quicker...?

  • @water2621112
    @water2621112  11 років тому

    Yes, all my programs are self written and made from scratch

  • @sonjabaughman2436
    @sonjabaughman2436 11 років тому

    Thank you for this but it didnt work for me. I checked it several times and it appears to be entered correctly. When I try to factor it just says DONE at the end, nothing else. Thoughts?

  • @owenwgoodrich
    @owenwgoodrich 8 років тому

    Thank you for making this video.

  • @garyg.8339
    @garyg.8339 12 років тому

    I followed everything exactly, but when i go to it, it prompts me for N? But when i hit a number and enter, it says err:archived, then when i click goto, the cursor is flashing over the colon in the second line of.the program, please help!

  • @beirirangu
    @beirirangu 12 років тому

    can you write a program that transfers decimal numbers into other number systems? like binary, octal, duodecimal, hexadecimal, hexavigesimal, duotrigesimal, or hexatridecimal? (base: 2, 8, 12, 16, 26, 32, 36)
    just asking because I made one for binary... it's basic but it's accurate (i think)

  • @williamyue7342
    @williamyue7342 8 років тому

    How did you scroll right after you get your factors? I press the right arrow after selecting it and nothing happens

  • @water2621112
    @water2621112  12 років тому

    if that's happening look at your last line. if it's not just L1 then that may be what is giving you that problem

  • @CommandoClown
    @CommandoClown 12 років тому

    actually works. But I thought it was to factor polynomials... But it does factor

  • @KPoetWarrior
    @KPoetWarrior 11 років тому

    having a problem, this may be a stupid question but i have old t83 and under 2nd lists mine are empty . I wonder if this is why I get syntax error! after following your video?

    • @stefantodoran
      @stefantodoran 10 років тому

      Create the list needed by going (dimensions of the list)->dim(L(listname))

  • @arielhaber-fawcett7372
    @arielhaber-fawcett7372 8 років тому

    Can you please make one on how to create a program that decodes matrices?

    • @water2621112
      @water2621112  8 років тому

      what do you need it to do?

    • @arielhaber-fawcett7372
      @arielhaber-fawcett7372 8 років тому

      Like if A=1 B=2 etc and you have encryption key of 3x3 that you muult by 1x3 to code and 1x3 tubes it's obverse to decode. I wanna make shortcut, but how?

  • @d.rice009
    @d.rice009 12 років тому

    is there any program that works like the casio calculator that i can program into my ti so that i can square root numbers that arent perfect squares and for it to leave it in simpliest form?

  • @jakeguitar01
    @jakeguitar01 8 років тому +1

    Mine isn't working for 27, 49, 100, etc. for 27 its only giving me 1,27 same for 49. for 100 it is only giving me 1,2,50,100. what did i do wrong

    • @water2621112
      @water2621112  8 років тому

      It must be that it's not adding the new numbers during the loops. Check the lines which say "augment("")" and see if they need fixing.

    • @pvp_python2632
      @pvp_python2632 7 років тому

      Aylin Talbot I’m having the same problem. What do you mean by “fixing”

  • @MzHoneyB213
    @MzHoneyB213 10 років тому

    Hello I have the TI-83 Plus. I've followed every step. But when I I try the number 36 and 27 just as you said all it says is N=? 36 Done is showing up in the right side of the screen. It's not factoring the numbers. Can you please help me??? 😞

    • @water2621112
      @water2621112  10 років тому +1

      MzHoneyB213 My guess based on what you told me is that one of the lines of code involving the lists are not entered correctly. Try looking there first, and come back to me if there are still problems.

    • @MzHoneyB213
      @MzHoneyB213 10 років тому

      William Talbot thank you I'll retry it and I'll let you know if it worked

  • @marooqi
    @marooqi 6 років тому

    Can this factor polynomials? I entered all that to do the wrong kind of factoring ?

  • @rlizreiter
    @rlizreiter 8 років тому

    how did you view the list right away? I have to manually open L3 in order to view my answer.

    • @water2621112
      @water2621112  8 років тому

      At the end of the program you have to put on its own line the list you want to display.

  • @amydavis6538
    @amydavis6538 7 років тому

    I did these complete steps and when I put 36 in it gives me a syntex error, what did I do wrong? I have double checked all of the steps and they are correct.

  • @tcburns92
    @tcburns92 12 років тому

    It's easy enough to write a program to factor polynomials just with simple commands and the quadratic equation.. I already have one written from high school if you want it?

  • @EmeraldProductions
    @EmeraldProductions 5 років тому

    How do you screen record your calculator?

  • @cutiepie4067
    @cutiepie4067 11 років тому

    Hi! Ok...so, whenever I put in the number, it said done. So, I tried multiple numbers, but it kept saying the same thing, "Done." So, when I did it for number 4, it said "Done." So, I went back to the program and watched your video all over again and made sure I didn't make any mistakes and followed your instructions. I did, so when I went back to see if it is going to work again, it does. EXCEPT, it only shows me the factoring for number 4 that I did earlier. I press "Prgm" then go to the "Factor." When, I click it, it shows me the factoring for #4....it doesn't even ask me for the "N" anymore...what did I do to my calculator?!

  • @Killuasama07
    @Killuasama07 6 років тому

    Wait why does this work? I see a lot of L1 and L2 but no numbers? Haven't tried it out yet but just wanna know the reasoning.

  • @tblunt27
    @tblunt27 9 років тому

    Thank you!!!! This helps very much.

  • @stafana13
    @stafana13 12 років тому

    when i try to use the arrow keys it just highlights the shown numbers {1, 2, 3, 4, 6, 9, 12 --> but i can't arrow over...

  • @pavpat3k
    @pavpat3k 4 роки тому

    For me it only works on one digit numbers which is very weird..the error I get for 2 digits or above are “ Syntax “

    • @pavpat3k
      @pavpat3k 4 роки тому

      Never mind it only works on 9,5,&3

  • @cordelia379
    @cordelia379 12 років тому

    im having the same problem as above, but my last line is the L3. I don't know how to scroll over then...? Help...?

  • @p1zzaisawesome
    @p1zzaisawesome 8 років тому

    When I run the program it says error and brings me to "if n/b=int(n/b). It looks like i typed everything correctly

    • @water2621112
      @water2621112  8 років тому

      Does it give any specifics other than 'error'? If so what is it? If not, I would look at the if loop again since it gives you that.

  • @OutsideTheBox360
    @OutsideTheBox360 12 років тому

    How did you scroll over to see the rest of the factors of 36 ?

  • @water2621112
    @water2621112  11 років тому

    did you put L1 on the last line?

  • @ajayortiz230
    @ajayortiz230 8 років тому

    Sorry I tried, I programed like you video but I get a Error. The first couple of times I tried it gave me a MISMATCH ERROR, and a prompt to quit or goto, it then took me back to the original promgram I inputed, any thoughts, please?

    • @water2621112
      @water2621112  8 років тому

      which part of the program does it bring you to?

    • @ajayortiz230
      @ajayortiz230 8 років тому +1

      +Aylin Talbot , Thank you for replying, it used to say mismatch error now when I go to the program factor enter it gives me the N=?36 then enter it says Done. I went to the goto at first and found I had forgot to put in a sto> in the thread, I put it in and now I get Done. oops.

  • @HollowHill17
    @HollowHill17 11 років тому +2

    how you get arrow goto thing after n

  • @jagatthakkar2228
    @jagatthakkar2228 10 років тому

    I have the TI-84 Plus C Silver Edition
    I watched the video 2 times, and I still get a Syntax Error. If anyone or William Talbot can help...

    • @water2621112
      @water2621112  10 років тому

      Jagat Thakkar When it gives you a syntax error, hit goto, and tell me what part of the program it goes to.

  • @chloedraws1202
    @chloedraws1202 9 років тому

    How do i get the go to with the o with the line across

    • @coralaisly
      @coralaisly 8 років тому +2

      +Chloe draws The 0 with the line across is the Theta and to type it on the TI-84 Plus you hit ALPHA and then 3. If you have a different model, take a look at the blue and green characters above the keys on your calculator and you should see the Theta in either green or blue. Hope this helps!

  • @brucealexander6469
    @brucealexander6469 9 років тому

    mine didn't work :( i did all step by step but when i wanted to test it said "Else has no closing End". what's the problem?

  • @connersmith7926
    @connersmith7926 8 років тому

    Even though I archived the program, it is still saying ERR:ARCHIVRED

  • @water2621112
    @water2621112  12 років тому

    that can get tricky seeing as some can't be factored using integers

  • @kingraxoe7604
    @kingraxoe7604 8 років тому

    i have the formula but i don't know where the THETA button is and how to get in??? like wut buttons do you hit to get the THETA in?

    • @water2621112
      @water2621112  8 років тому +1

      king raxoe you hit alpha first and then 3. it's that icon that looks like a 'no' sign.

    • @wandapetty9776
      @wandapetty9776 7 років тому

      Thank you! I was stuck there, because you didn't say how to find it and you were going pretty fast. Thanks a bunch!

    • @water2621112
      @water2621112  7 років тому

      Wanda Petty you're welcome!

  • @DeeZee1974
    @DeeZee1974 11 років тому

    Very cool vids, Will, keep up the awesome work.
    +1 subscriber

  • @alicequijada4328
    @alicequijada4328 9 років тому

    You were amazing thank you!!!!

  • @keenan2789
    @keenan2789 10 років тому

    What is the fata button symbol located near 9.09

    • @water2621112
      @water2621112  10 років тому

      Keenan Sudderth 'Theta' is Alpha and then 3 :)

  • @Kese157
    @Kese157 11 років тому

    Hello. Once I input all of the data I end up getting error:label
    1:Quit
    what happened?

  • @mimi_d2445
    @mimi_d2445 10 років тому

    i finished the programing and it worked fine for the first time, then i tried different numbers and it does not work, i watched the video again and again and there is nothing missing, i can factor 36, however it does not work for 12, 101, 56 et, it seems that only few numbers are factoring, please help me

    • @water2621112
      @water2621112  10 років тому

      lilika r I know this is a hard request, but can you test all numbers up to 50 or 100 and tell me which ones specifically work and don't work? It will give me a better idea of what's going on.

  • @krayzie5968
    @krayzie5968 12 років тому

    i mean you could put in steps. i have no idea how you even get to the screen after you named the program.

  • @anaghkhandelwal
    @anaghkhandelwal 10 років тому

    Hello
    Please help me,
    I have done everything you have done rechecked it but still my ti84 Plus SE is showing Syntax Error to any number after 4.
    Please help
    Thank you in advance

    • @water2621112
      @water2621112  10 років тому

      anagh khandelwal Okay, if you are having problems with any number beyond four, then the part after "Goto B : Else " is to blame. I have a different method to use that gives the same result if you still can't get it right though. Copy exactly.If fPart(N/B)=0Thenaugment(L1,{B}) -> L1augment({N/B},L2) -> L2B+1 -> BGoto AElseB+1 -> BGoto AI hope this helps :)

    • @anaghkhandelwal
      @anaghkhandelwal 10 років тому

      William Talbot Thanks for your help and time
      The problem was of brackets..
      I used different brackets by mistake.
      It was my fault not your..
      The problem is solved..
      Also great work....
      We would love to see more of programs by you...
      Thanks for your time and effort.. 

  • @JeffersonYu1
    @JeffersonYu1 10 років тому

    Great program! Works for me.

  • @PuffinFactory
    @PuffinFactory 11 років тому

    I take programs and make them able to work together within one program instead of others. You will still get the same answers here is the edited code.
    Else
    B+1->B
    Goto A
    Lbl B
    If B(squared)=N
    Then
    augment(L1,{B})->L1
    Disp L1
    Else
    Disp "FACTORS ARE", L1,L2
    Pause
    Goto "whatever your Menu is labeled"
    Stop

  • @laurennicole7
    @laurennicole7 11 років тому

    Sooo how do I make a program label for the Theta symbol ? I'm so lost- Didn't work for me because I have nothing programmed for the symbol Theta - What am I missing here :\

  • @jadetran8012
    @jadetran8012 8 років тому

    Thank you for sharing this. I tried to do every step correctly. But for somehow it does not work. I checked it many times to make sure i did not miss any step, but it is still not working. 😭😭😭

    • @water2621112
      @water2621112  8 років тому

      Jade Tran what does it give you as an answer for given input?

  • @MrL33tg4m3r
    @MrL33tg4m3r 12 років тому

    And I checked, I entered everything CORRECTLY. Anything that could be wrong with my settings to cause this? I just reset my calculator. Also I use a quad program and when I use
    A:?1
    B:?-1
    C:?-12
    I get 4, -3 for answer. Shouldn't it give me -4, 3? any1 can help?

  • @raynaperez5063
    @raynaperez5063 9 років тому

    I can't see the factors of 36 but I can see any other number help

  • @BikingWithColdWater
    @BikingWithColdWater 12 років тому

    I had to look that up, too. It's ALPHA 3.

  • @NrlIl
    @NrlIl 8 років тому

    I'm having a problem after a enter a number then hit enter it says error Archived, any thoughts?

    • @water2621112
      @water2621112  8 років тому

      if it is archived, then it means that you have it stored so it can't be modified. there should be a star in front of the program in your list which means it's archived.
      to do this, hit 2nd, then memory (the key above enter), then go to the programs in memory, find the program, and hit enter. that should take care of it

    • @NrlIl
      @NrlIl 8 років тому

      ok thank you for responding

  • @liensekere
    @liensekere 12 років тому

    wish u had said how to input theta..im stuck!

  • @abdumusa4221
    @abdumusa4221 11 років тому

    Thank you soooooooooo much! You are great person. you should know that....

  • @naufilamray8964
    @naufilamray8964 8 років тому

    how do you scroll thorugh the list...arrow key isnt working

    • @water2621112
      @water2621112  8 років тому

      Imran Khan is there anything written after you have the L1 at the end?

  • @adouvital4769
    @adouvital4769 7 років тому

    how we can make theta on ti 84 plus ce

  • @chacha5808
    @chacha5808 6 років тому

    Please help me find the = (equal to) so I can finish programming my calculator. You never demonstrated how to arrive to that
    .

    • @water2621112
      @water2621112  6 років тому

      Charisse Smitherman hit the 2nd key and then the math key

    • @chacha5808
      @chacha5808 6 років тому

      Thanks for responding so quickly. I finally got it.

  • @cordelia379
    @cordelia379 12 років тому

    please, did you ever fix this...? im having the same problem!!!! :(

  • @Adventourouslucyy
    @Adventourouslucyy 9 років тому

    I did everything but when I put in 36 it says error:argument , Does anyone know how to fix this?

  • @Kese157
    @Kese157 11 років тому

    I fixed one error and the first one worked however when I put 27 and 101 it said Done. Thanks in advance.

  • @PatrickFeltes
    @PatrickFeltes 11 років тому +2

    You're overdoing this. All you need is a simple for loop from 1 to the number. And then check if the remainder of the number is 0. If so, add it to the list.

    • @water2621112
      @water2621112  10 років тому

      I did that method before, but that means the program spends more memory going through numbers, and the range of this program becomes more limited. This method gives a larger range of factorable numbers.

    • @PatrickFeltes
      @PatrickFeltes 10 років тому

      That makes sense, I didn't really think about efficiency when making mine.

  • @water2621112
    @water2621112  11 років тому

    don't arrow up or down. arrow left and right

  • @meleagertam5123
    @meleagertam5123 6 років тому

    I found my problem my problem is that the list is not displaying, how do I fix that

    • @water2621112
      @water2621112  6 років тому

      Usually that means a line with Augment, labels, or goto went awry. Try there first.

  • @bryantfamily9498
    @bryantfamily9498 9 років тому

    Did all the steps and it says ERR:Archived
    1. Quit
    2. Goto
    What did I do wrong?? Help me fix this please.

    • @tbgh1031
      @tbgh1031 9 років тому

      I am having the same issue

    • @TimPatDuDe
      @TimPatDuDe 9 років тому

      +Kymberli Riley epsstore.ti.com/OA_HTML/csksxvm.jsp?nSetId=95942

  • @kimvanji
    @kimvanji 12 років тому

    Thanks! ur video helps a lot!

  • @nehemiemengouchi6884
    @nehemiemengouchi6884 5 років тому

    I put everything in and all it says is done need help please

  • @mr.a2014
    @mr.a2014 8 років тому

    hey I tried to prompt the number N but mines came out as log(

    • @water2621112
      @water2621112  8 років тому

      You have to hit the alpha key first

  • @sheen602
    @sheen602 12 років тому

    thanks you so much I needed this soooooo bad I LOVE YOU LOL xoxoxo