EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
9th Edition
ISBN: 9781337671385
Author: FARRELL
Publisher: CENGAGE LEARNING - CONSIGNMENT
bartleby

Videos

Expert Solution & Answer
Book Icon
Chapter 9, Problem 2PE

a.

Explanation of Solution

Program:

File name: “MeanMedian.java

//Import necessary header files

import javax.swing.*;

//Define a class named MeanMedian

class MeanMedian

{

    //Define a main method

    public static void main(String[] args)

    {

        //Declare an array of nine integers

        int[] nums = new int[9];

        //Declare the variables and initialize the values

        String entry;

        String list = "You entered: ";

        int a, b;

        int temp;

        int midPos;

        int total = 0;

        double mean;

        //For loop to be executed until a exceeds 9

        for(a = 0; a < nums.length; ++a)

        {

            //Prompt the user to enter a number

            entry = JOptionPane.showInputDialog(null,

           "Enter number " + (a + 1));

            nums[a] = Integer.parseInt(entry);

            //Compute the total

            total += nums[a];

            //If a equals zero

            if(a == 0)

                //Find the list

                list += nums[a];

            //Else a not equals zero

            else

                //Find the list

                list += ",  " + nums[a];

        }

        //Print the result

        System...

b.

Explanation of Solution

Program:

File name: “MeanMedian2.java

//Import necessary header files

import javax.swing.*;

//Define a class named MeanMedian2

class MeanMedian2

{

    //Define a main method

    public static void main(String[] args)

    {

        //Declare an array of 20 integers

        int[] nums = new int[20];

        //Declare the variables and initialize the values

        int num = 0;

        String entry;

        String list = "You entered: ";

        int a, b;

        int temp;

        double median;

        int total = 0;

        double mean = 0;

        final int QUIT = 9999;

        int size = 0;

        /*For loop to be executed until a exceeds 20 and does not enter QUIT*/

        for(a = 0; num != QUIT && a < nums.length; ++a)

        {

            //Prompt the user to enter a number or QUIT

            entry = JOptionPane.showInputDialog(null,

"Enter number " + (a + 1) + " or " + QUIT + " to quit");

            num = Integer.parseInt(entry);

            //If the user does not enter QUIT

            if(num != QUIT)

            {

                //Assign the value

                nums[a] = num;

                //Find the total

                total += nums[a];

                //If a equals zero

                if(a == 0)

                    //Find the list

                    list += nums[a];

                //Else

                else

                    //Find the list

                    list += ",  " + nums[a];

            }

        }

        //Print the result

        System.out.println("size is " + a);

        //If the user does not enter QUIT

        if(num != QUIT)

            //Find the size

            size = nums...

Blurred answer
Students have asked these similar questions
The mean of a list of numbers is its arithmetic average. The median of a list is its middle value when the values are placed in order. For example, if an ordered list contains 1, 2, 3, 4, 5, 6, 10, 11, and 12, then the mean is 6, and their median is 5. Write an application that allows you to enter nine integers and displays the values, their mean, and their median.
Q.Create an interesting educational information chat box that asks the user to give an input question and then answers the question given by user with a suitable answer. You can make use of list for different questions and answers.Save two to three answers for a single question and then for random selection of elements from those answers use random choice(list) method from random module that returns a random element. Also for a user question that doesn't matches with the questions present in the chat box it should display statement like "oops i can't answer that" "sorry i am not intelligent enough" "could u please ask something else" using random method so that every time one of these statements appear  **coding language python ***try using basic programming techniques in python without using arrays and pointers * * * copy paste the program itself and also the screenshot of program and output * * * use any type of data for questions such as name details of cities species etc depends on…
Q.Create an interesting educational information chat box that asks the user to give an input question and then answers the question given by user with a suitable answer. It should match the question of user with the answer avaliable. Make use of list for different questions and answers. (if possible) Save two to three answers for a single question and then for random selection of elements from those answers use random choice(list) method from random module that returns a random element. Also for a user question that doesn't matches with the questions present in the chat box it should display statement like "oops i can't answer that" "sorry i am not intelligent enough" "could u please ask something else" using random method so that every time one of these statements appear    **coding language python   ***try using basic programming techniques in python without using arrays and pointers   * * * copy paste the program itself and also the screenshot of program and output   * * * use any…
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
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
Graphical User Interfaces: Crash Course Computer Science #26; Author: CrashCourse;https://www.youtube.com/watch?v=XIGSJshYb90;License: Standard YouTube License, CC-BY
Python GUI | How To Make A GUI In Python | Best GUI Framework In Python | Edureka; Author: edureka!;https://www.youtube.com/watch?v=_PHJvjQJa3w;License: Standard Youtube License