
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
thumb_up100%
Write the java program that will prdoce the output below

Transcribed Image Text:a. Write a program that prompts the user for a file name, then reads that file
(assuming that its contents consist entirely of integers) and prints the maximum,
minimum, sum, count (number of integers in the file), and average of the
numbers. For example, if the file num_input.dat has the following contents:
4 -2 18
15 31
27
Your program would produce the following output:
What is the name of the input file? numberinput.dat
Maximum = 31
Minimum = -2
Sum = 93
Count =
6
Average = 15.5
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

Knowledge Booster
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
- I want solution with stepsarrow_forwardTHIS IS IN JAVA Question: Given a line of text as input, output the number of characters excluding spaces, periods, exclamation points, or commas. Ex: If the input is: Listen, Mr. Jones, calm down. the output is: 21 Note: Account for all characters that aren't spaces, periods, exclamation points, or commas (Ex: "r", "2", "?"). My incorrect code: import java.util.Scanner; public class LabProgram { public static void main(String[] args) {Scanner scnr = new Scanner(System.in); String userText; int count = 0; userText = scnr.nextLine(); for (int i = 0; i < userText.length(); i++) { if (userText.charAt(i) != ' ' && userText.charAt(i) != '.' && userText.charAt(i) != ',') count++; } System.out.println(count); }} An example/hint i'm given to compare to my code as to why i'm getting it wrong: Output differs. See highlights below. Input Howdy! Your output 6 Expected output 5 Please…arrow_forwardwrite a java codearrow_forward
- Write a program that displays the following pattern: In java * *arrow_forwardWrite a java code that prints a 4 digit number supplied by the user, vertically using modulus and devision.arrow_forwardWrite a Java program that allows the user to enter the expenses’ in term of AED by using a while loop to calculate the average. The number of expenses is unknown. To stop entering the expenses, the user needs to enter a negative value. Show the total, average and the count.arrow_forward
- Write a java Program that Convert Fahrenheit To Celsiusarrow_forwardWrite a java program to find how much time required to execute a function which only have a print statement and also print it's units also.arrow_forwardWrite a java program Represents an integer evaluator of postfix expressions. Assumes the operands are constants.arrow_forward
- THIS IS IN JAVA Question: Given a line of text as input, output the number of characters excluding spaces, periods, exclamation points, or commas. Ex: If the input is: Listen, Mr. Jones, calm down. the output is: 21 Note: Account for all characters that aren't spaces, periods, exclamation points, or commas (Ex: "r", "2", "?"). My incorrect code: import java.util.Scanner; public class LabProgram { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); String userText; int counter = 0; userText = scnr.nextLine(); for (int i = 0; i < userText.length(); i++) { if (userText.charAt(i) != ' ' && userText.charAt(i)!= '.' && userText.charAt(i) != ',') { counter++; } } System.out.println(counter); }} example/hint i'm given to compare to my code as to why i'm getting it wrong: Output differs. See highlights below. Input: Howdy! Your output: 6 Expected output: 5 Output…arrow_forwardcreate a java code using the conversion methodarrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education