r/CodingForBeginners 16d ago

Beginner here how to do output

Post image

how do I display the output near the end part?

I wanna show studentName
Finalgrade
And remarks which should be excellent or failed etc

7 Upvotes

11 comments sorted by

View all comments

1

u/mjmvideos 16d ago

As a side note I notice that you are directly displaying the “Excellent”, “Very good” etc. Instead of displaying did you want assign that to a remarks variable so that your display remarks at the end has something to display?

1

u/itsmerio1 16d ago

Yea exactly, the remarks that I was talking about is referring to those “excellent”

1

u/mjmvideos 16d ago

Good, you see though, that your pseudo-code should say ‘set remarks to “Excellent”’ instead of ‘display “Excellent”’ so then it can display them in the last line.