Assume that children is an integer variable containing the number of children in a community and that families is an integer variable containing the number of families in the same community. Write an expression whose value is the average number of children per family.

Respuesta :

Answer:

children / (double) families.

Step-by-step explanation:

Integer division returns an Integer value in most languages. I'm assuming "1d" is a double-precision 1, which turns the expression into a floating point division.