0% found this document useful (0 votes)
37 views

Programming Assignment Unit 2 Sample 3

The document contains code for a Java quiz program that asks the user which assignment type a question is for and checks their answer. The program uses JOptionPane to display the question, get the answer, and show if the answer is correct or incorrect.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
37 views

Programming Assignment Unit 2 Sample 3

The document contains code for a Java quiz program that asks the user which assignment type a question is for and checks their answer. The program uses JOptionPane to display the question, get the answer, and show if the answer is correct or incorrect.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

import javax.swing.

JOptionPane;

public class Quiz{

public static void main(String[] args) {

String question = "Which assignment is this?\n";

question += "A. The discution Assignment\n";

question += "B. The Learning Journal\n";

question += "C. The Programming Assignment\n";

question += "D. The Reading Assignment\n";

question += "E. The Self Quiz\n";

while (true) {

String answer = JOptionPane.showInputDialog(question);

answer = answer.toUpperCase();

if (answer.equals("C")) {

JOptionPane.showMessageDialog(null,"Correct!");

break;}

else if (answer.equals("A") || answer.equals("B") || answer.equals("D") || answer.equals("E")) {

JOptionPane.showMessageDialog(null,"Incorrect. Please try again.");}

else {

JOptionPane.showMessageDialog(null,"Invalid answer. Please enter A, B, C, D, or E.");}

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy