Create a new Jave program called Examine2. Modify the below Java code Examine1 to use an if…if/else statement. Check each value entered by the user to determine if the user entered a negative number. If so, program should count each negative number entered. Once user has entered all numbers, program should print the total negative numbers entered by user.   The program should print the average using the printf command and the number of negative numbers entered. *note: you may include or exclude the negative numbers with your calculation.   import java.util.Scanner; public class Examine1 {     public static void main(String[] args)      {         int n, sum = 0;         float average;  //for calculating average of all inputs         Scanner s = new Scanner(System.in); //Scanner for read input from user         System.out.printf("How many numbers you want to enter:\n");         n = s.nextInt(); //taking user input for how many numbers         int a[] = new int[n];         System.out.printf("Enter all the numbers:\n");         for(int i = 0; i < n ; i++)         {             a[i] = s.nextInt();             sum = sum + a[i];         }         System.out.printf("\nSum:"+sum);         average = (float)sum / n; //calculating average         System.out.printf("\nAverage:"+average );     } }   Thank you, I'm having trouble modifying this code.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.7: Do While Loops
Problem 3E: (Misc. application) a. Write a program to reverse the digits of a positive integer number. For...
icon
Related questions
Question
100%

Create a new Jave program called Examine2.

Modify the below Java code Examine1 to use an if…if/else statement.

Check each value entered by the user to determine if the user entered a negative number. If so, program should count each negative number entered.

Once user has entered all numbers, program should print the total negative numbers entered by user.  

The program should print the average using the printf command and the number of negative numbers entered.

*note: you may include or exclude the negative numbers with your calculation.

 

import java.util.Scanner;
public class Examine1 {

    public static void main(String[] args) 
    {
        int n, sum = 0;
        float average;  //for calculating average of all inputs
        Scanner s = new Scanner(System.in); //Scanner for read input from user
        System.out.printf("How many numbers you want to enter:\n");
        n = s.nextInt(); //taking user input for how many numbers
        int a[] = new int[n];
        System.out.printf("Enter all the numbers:\n");
        for(int i = 0; i < n ; i++)
        {
            a[i] = s.nextInt();
            sum = sum + a[i];
        }
        System.out.printf("\nSum:"+sum);
        average = (float)sum / n; //calculating average
        System.out.printf("\nAverage:"+average );
    }
}

 

Thank you, I'm having trouble modifying this code.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Mathematical functions
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT