Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- char grade;
- if (testResult >= 90) {
- grade = 'A';
- } else {
- if (testResult >= 80) {
- grade = 'B';
- } else {
- if (testResult >= 70) {
- grade = 'C';
- } else {
- grade = 'D';
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement