| New Reply |
error in code |
Share Thread | Thread Tools |
| Jan22-12, 06:51 PM | #1 |
|
|
error in code
hey im doing a intro programming class and Im running into some problems. would really appreciate some help to see where I went wrong. Been trying to figure it out for hours now. Someone please help me out
These are my errors c: In function main: c:33:9: error: expected identifier or ( before = token This is the code: #include <stdio.h> #include <math.h> int main (void) { float distance; int x1,x2; int y1,y2; printf("The three types of angles in triangles are: Right angles,Obtuse Angles, and Acute angles") ; printf("Three kinds of triangles are: Equilateral Triangles,Isosceles Triangles and Scalene Triangles") ; printf(" The Pythagorean Theorem is : a2+b2=c2") ; printf("The Distance Formula is: sqrt(pow(x2-x1,2) + pow(y2-y1,2)") ; printf("Please enter First X value") ; scanf("%d",&x1) ; printf("Please enter Second X Value") ; scanf("%d",&x2) ; printf("please enter First Y Value") ; scanf("%d",&y1) ; printf("Please enter Second Y Value") ; scanf("%d",&y2) ; float=sqrt(pow(x2-x1,2) + pow(y2-y1,2); printf("Distance is %f",distance); return 0; } |
| Jan22-12, 07:19 PM | #2 |
|
Mentor
|
|
| Jan22-12, 09:44 PM | #3 |
|
|
I have no idea what else to put there I keep getting errors.
|
| Jan22-12, 09:46 PM | #4 |
|
|
error in code
float is a data type you need to use a variable name of type float, also make sure your parens are equal to eachother for example this
distance=sqrt(pow(x2-x1,2) + pow(y2-y1,2)); P.S. throw some '\n' in your printf statements so it is not as cluttered. |
| Jan23-12, 12:52 AM | #5 |
|
Mentor
|
You can't assign a value to a data type. Also, see jtbell's post - you have a problem with your parentheses on that line. |
| New Reply |
| Thread Tools | |
Similar Threads for: error in code
|
||||
| Thread | Forum | Replies | ||
| Error Correction Code tip? | Electrical Engineering | 3 | ||
| Error Correcting Code understanding | Linear & Abstract Algebra | 0 | ||
| Need urgent help ...verilog code error | Electrical Engineering | 0 | ||
| spot the error in my code. (in C). | Programming & Comp Sci | 11 | ||
| Convolution Code and Error Correcting Capability | Electrical Engineering | 2 | ||