Program.java 354 B

123456789101112131415161718
  1. import weather.*;
  2. public class Program {
  3. public static void main(String[] args) {
  4. Central central = new Central();
  5. String[] locations = { "vienna", "moscow", "tokyo", "bangkok", "kapstadt" };
  6. for (String location: locations) {
  7. central.addStation(location);
  8. }
  9. for (int i = 0; i < 10; i++) {
  10. central.measurementEvent();
  11. }
  12. }
  13. }