How to print the report card of 30 students in your class in small basic.
Answers
Answered by
5
Answer:
eqstart:
Grade=""
RAW=0
total=100
percentage=0
TextWindow.WriteLine("What is your name?")
name = TextWindow.Read()
gradestart:
TextWindow.WriteLine("What is the name of the subject?, "+name)
subject = TextWindow.Read()
TextWindow.WriteLine("What is your score in "+subject+"?, " +name)
RAW = TextWindow.ReadNumber()
TextWindow.WriteLine("what is your highest possible score in the "+subject+" activity " +name+"?")
Answered by
2
Answer:
Similar questions