fork download
  1. program grade_system
  2. real::grade
  3. read *,grade
  4. if(grade>95.0)then
  5. print *,'the grade is A.'
  6. else if(grade>86.0)then
  7. print *,'the grade is B.'
  8. else
  9. print *,'the grade is F.'
  10. end if
  11. end program
Success #stdin #stdout 0.01s 5280KB
stdin
65
stdout
 the grade is F.