public class Casting { // 1.6.2 Casting and Ranges of Variables public static void main(String[] args) { int total = 100; int numPeople = 40; double average; average = total / (double) numPeople; System.out.println("Average: " + average); } }