Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

Integers numChildrenA, numChildrenB, numChildrenC, and numFamilies are read from input. Compute the average children per family using floating - point division, and assign the result

Integers numChildrenA, numChildrenB, numChildrenC, and numFamilies are read from input. Compute the average children per family using floating-point division, and assign the result to avgFamilies.
Ex: If the input is 59133, then the output is:
9.0
import java.util.Scanner;
public class ChildDistribution {
public static void main(String[] args){
Scanner scnr= new Scanner(System. in);
int numchildrena;
int numchildrenB;
int numchildrenc;
int numfamilies;
double avgFamilies;
numchildrenA = scnr. nextInt () ;
numchildren B=scnr. nextInt();
numchildrenc =scnr. nextInt ();
numfamilies = senr. nextInt();
V** Your code goes here *
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

What are the global influences on accounting?

Answered: 1 week ago