Edmodo is a educational website designed to make learning and teaching easier.
Students can speak with other students about classwork, and the teacher can also communicate assignments and give messages for the entire class.
Of course the teacher can see all of the messages you post, so inappropriate language and not school related conversations usually end up with trouble with the teacher.
I used this site in 7th and 8th grade
for Language arts and Social Studies.
But of course Edmodo can be used with any subject:)
love, the Pineapple.
<3
It tells u what kind of file it is and also if it were to have two extensions it would interfere and cause it not to work
Answer:
PROGRAM QuadraticEquation
Solver
IMPLICIT NONE
REAL :: a, b, c
;
REA :: d
;
REAL :: root1, root2
;
//read in the coefficients a, b and c
READ(*,*) a, b, c
WRITE(*,*) 'a = ', a
WRITE(*,*) 'b = ', b
WRITE(*,*) 'c = ', c
WRITE(*,*)
// computing the square root of discriminant d
d = b*b - 4.0*a*c
IF (d >= 0.0) THEN //checking if it is solvable?
d = SQRT(d)
root1 = (-b + d)/(2.0*a) // first root
root2 = (-b - d)/(2.0*a) // second root
WRITE(*,*) 'Roots are ', root1, ' and ', root2
ELSE //complex roots
WRITE(*,*) 'There is no real roots!'
WRITE(*,*) 'Discriminant = ', d
END IF
END PROGRAM QuadraticEquationSolver