Skip to main content

Practice ยท 2 of 3

A validated record

Inside Solution, write record Weather(String city, double celsius) with a compact constructor that rejects null/blank city and celsius below -273.15 (IllegalArgumentException). Add static double average(Weather[] readings) returning the mean celsius of a non-empty array.

Difficulty: beginner

Back to lesson: Practice: Practice: Modeling Data