Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Enabling Assessment on Dialog Boxes

DIRECTION: Fill-in the blanks with the correct Java command or statement. The output is displayed for your reference.

import java. util . Scanner;


import javax.swing. JDialog ; //do not use * to import all classes
import javax.swing. JOptionPane ; //do not use * to import all classes
import java.text . DecimalFormat;

public class Quiz {


public static void main ( String args[ ] ) {
Scanner input = new Scanner ( System.in );
DecimalFormat f = new DecimalFormat ( 0.000 ); //format with 3 decimals double grade;
System.out.print("Enter your desired grade: ");

Double grade = Double . parseDouble(input.nextLine()) ;


JDialog. setDefaultLookAndFeelDecorated ( true );
JOptionPane. showMessageDialog ( null , "You entered:" + f. format (grade), "Result", JOptionPane.
WARNING_MESSAGE); );

System. exit ( 0 );

You might also like