This pseudocode contains several nested If-Then-Else statements. It was written without proper alignment and indentation. How would I rewrite the code and use proper conventions of alignment and indentation?
If score < 60 Then
Display “Your grade is F.”
Else
If score <70 Then
Display “Your grade is D.”
Else
If score <80 Then
Display “Your grade is C.”
Else
If score <90 Then
Display “Your grade is B.”
Else
Display “Your grade is A.”
End If
End If
End If
End if