Prgramming Assignment One
Prgramming Assignment One
START
READ MARKS
IF MARKS >=90 NO
YES
IF MARKS >= 80
YES NO
GRADE = B NO
GRADE = A IF MARKS >= 65
YES
GRADE = C GRADE = D
Print grade
END
QUESTION 2
}
flowchart for calcula ng the simple interest using the formula I = (P * T * R)/100
START
READ P,T,R
I=P*T*R/100
PRINT I
END