Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that reads three integers and prints their average. With inputs 3 4 5 your output should look like: Enter three integers: 3

Write a program that reads three integers and prints their average. With inputs 3 4 5 your output should look like: Enter three integers: 3 4 5 The average of 3, 4 and 5 is 4

This is what I am given.

import java.util.Scanner; public class AverageOfThree {

//************************************************************** // Read three integers and output their average //************************************************************** public static void main(String[] args) { int num1, num2, num3; double average; Scanner scan = new Scanner (System.in); // input three integers // Compute the average of the numbers // Display the numbers and their respective average } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Discuss the history of human resource management (HRM).

Answered: 1 week ago