package gradeincrease; import java.util.Scanner; public class GradeIncrease { /** * @param args the command line arguments */ public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter the original grade: "); double originalGrade = input.nextDouble(); double newGrade = originalGrade; if (originalGrade < 90) { newGrade += 5; } System.out.println("The new grade is: " + newGrade); } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter