
-----------------------------------
crusher7002
Mon Nov 08, 2010 1:20 pm

just wondering
-----------------------------------
Im not sure if im in the right section but im looking for code for turing to help me with math. I just cant figure it out so if anyone can help that would be great. 

i want to solve for Y
the equation is y=a(x-h)**2+k

plz dont get mad at me if this is in the wrong spot

-----------------------------------
SNIPERDUDE
Mon Nov 08, 2010 1:36 pm

RE:just wondering
-----------------------------------
This is the wrong spot, Turing Help is the section you want. Don't worry about it though, a mod can move it.

So what exactly are you having troubles with? Is it not giving you the correct results?

-----------------------------------
crusher7002
Tue Nov 09, 2010 9:20 am

Re: just wondering
-----------------------------------
i just get errors. im new to turing, so i suck at it. next time i need help ill post in the right section. thanks for telling me :)

-----------------------------------
Krocker
Tue Nov 09, 2010 11:33 am

Re: just wondering
-----------------------------------
i just get errors. im new to turing, so i suck at it. next time i need help ill post in the right section. thanks for telling me :)


this is simple.  the following is the codes if u  want to use it:

var y,h,x,k: real

put "Enter value for a: "..
get a
put "Enter value for x: "..
get x
put "Enter value for h: "..
get h
put "Enter value for k: "..
get k

y=a(x-h)**2+k 

put "y is equal to :", y



 8-)  :lol:  :mrgreen:

-----------------------------------
wysper
Wed Nov 10, 2010 1:51 pm

RE:just wondering
-----------------------------------
i also suck at turing..so don't feel alone  :(

-----------------------------------
SNIPERDUDE
Wed Nov 10, 2010 7:27 pm

RE:just wondering
-----------------------------------
Programming like any other skill or hobby just takes time. We all started at the beginning at one point.
