Java Programming, Loose-Leaf Version
Java Programming, Loose-Leaf Version
9th Edition
ISBN: 9781337685900
Author: FARRELL, Joyce
Publisher: Cengage Learning
bartleby

Concept explainers

bartleby

Videos

Expert Solution & Answer
Book Icon
Chapter 7, Problem 12PE

Explanation of Solution

Program:

File name: “PrepareTax.java

//Import necessary header files

import javax.swing.*;

//Define a class named PrepareTax

public class PrepareTax

{

    //Define a main method

    public static void main(String[] args)

    {

        //Declare a string of values

        String entry = "", ssn, last, first, address, city, state, zip;

        //Declare the variables

        char status;

        int x;

        double income = 0;

        boolean isGood = false;

        /*Prompt the user for data as long as the

        Social Security number is not in the correct format,

        with digits and dashes in the appropriate positions*/

        while(!isGood)

        {

            isGood = true;

            //Prompt the user to enter SSN

            entry = JOptionPane.showInputDialog(null,

            "Enter your Social Security number");

/*If SSN is not in the correct format, with digits and dashes in the appropriate positions*/

            if(entry.length() != 11)

            isGood = false;

            /*If SSN is in the correct format, with digits and

            dashes in the appropriate positions*/

            else

            {

                //For loop to be executed until x exceeds 3

                for(x = 0; x < 3; ++x)

                    if(!Character.isDigit(entry.charAt(x)))

                        isGood = false;

                //For loop to be executed until x exceeds 6

                for(x = 4; x < 6; ++x)

                    if(!Character.isDigit(entry.charAt(x)))

                        isGood = false;

                //For loop to be executed until x exceeds 11

                for(x = 8; x < entry.length(); ++x)

                    if(!Character.isDigit(entry.charAt(x)))

                        isGood = false;

                //If third and sixth character is a dash

if(!(entry.charAt(3) == '-') || !(entry.charAt(6) == '-'))

                  isGood = false;

            }

        }

        //Assign the value

        ssn = entry;

        //Prompt the user to eter the first name

        first = JOptionPane.showInputDialog(null,

        "Enter your first name");

        //Prompt the user to eter the last name

        last = JOptionPane.showInputDialog(null,

        "Enter your last name");

        //Prompt the user to eter the address

        address = JOptionPane.showInputDialog(null,

         "Enter your address");

        //Prompt the user to eter the city

        city = JOptionPane.showInputDialog(null,

         "Enter your city");

        //Prompt the user to eter the state

        state = JOptionPane.showInputDialog(null,

         "Enter your state");

        isGood = false;

        /*Prompt the user for data as long as the

        zip code is not five digits*/

        while(!isGood)

        {

            isGood = true;

            //Prompt the user to enter the zip code

            entry = JOptionPane.showInputDialog(null,

            "Enter your Zip code");

            //If zip code is not five digits

            if(entry.length() != 5)

                isGood = false;

            //Else zip code is five digits

            else

                //For loop to be executed until x exceeds 5

                for(x = 0; x < 5; ++x)

                    if(!Character.isDigit(entry.charAt(x)))

                        isGood = false;

        }

        zip = entry;

        isGood = false;

        /*Prompt the user for data as long as the

        marital status does not begin with one of

        the following: S, s, M, or m*/

        while(!isGood)

        {

            isGood = true;

            //Prompt the user to enter the marital status

            entry = JOptionPane...

Blurred answer
Students have asked these similar questions
A cylinder of diameter 10 cm rotates concentrically inside another hollow cylinder of inner diameter 10.1 cm. Both cylinders are 20 cm long and stand with their axis vertical. The annular space is filled with oil. If a torque of 100 kg cm is required to rotate the inner cylinder at 100 rpm, determine the viscosity of oil. Ans. μ= 29.82poise
Make the following game user friendly with GUI, with some simple graphics The following code works as this: The objective of the player is to escape from this labyrinth. The player starts at the bottom left corner of the labyrinth. He has to get to the top right corner of the labyrinth as fast he can, avoiding a meeting with the evil dragon. The player can move only in four directions: left, right, up or down. There are several escape paths in all labyrinths. The player’s character should be able to moved with the well known WASD keyboard buttons. If the dragon gets to a neighboring field of the player, then the player dies. Because it is dark in the labyrinth, the player can see only the neighboring fields at a distance of 3 units.  Cell Class: public class Cell { private boolean isWall; public Cell(boolean isWall) { this.isWall = isWall; } public boolean isWall() { return isWall; } public void setWall(boolean isWall) { this.isWall = isWall; } @Override public String toString() {…
Please original work What are four of the goals of information lifecycle management think they are most important to data warehousing, Why do you feel this way, how dashboards can be used in the process, and provide a real life example for each. Please cite in text references and add weblinks
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781305480537
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Introduction to Classes and Objects - Part 1 (Data Structures & Algorithms #3); Author: CS Dojo;https://www.youtube.com/watch?v=8yjkWGRlUmY;License: Standard YouTube License, CC-BY