Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. Continent asia = new Continent();
  2. Continent africa = new Continent();
  3. Continent europe = new Continent();
  4. Continent northAmerica = new Continent();
  5. Continent southAmerica = new Continent();
  6. Continent australia = new Continent();
  7. Continent antarctica = new Continent();
  8. Country china = new Country(new BigDecimal("1409517397"));
  9. asia.addCountry(china);
  10. Country india = new Country(new BigDecimal("1339180127"));
  11. asia.addCountry(india);
  12. Country indonesia = new Country(new BigDecimal("263991379"));
  13. asia.addCountry(indonesia);
  14. Country pakistan = new Country(new BigDecimal("197015955"));
  15. asia.addCountry(pakistan);
  16. Country bangladesh = new Country(new BigDecimal("164669751"));
  17. asia.addCountry(bangladesh);
  18. Country nigeria = new Country(new BigDecimal("190886311"));
  19. africa.addCountry(nigeria);
  20. Country ethiopia = new Country(new BigDecimal("104957438"));
  21. africa.addCountry(ethiopia);
  22. Country egypt = new Country(new BigDecimal("97553151"));
  23. africa.addCountry(egypt);
  24. Country congo = new Country(new BigDecimal("81339988"));
  25. africa.addCountry(congo);
  26. Country tanzania = new Country(new BigDecimal("57310019"));
  27. africa.addCountry(tanzania);
  28. Country germany = new Country(new BigDecimal("82114224"));
  29. europe.addCountry(germany);
  30. Country uk = new Country(new BigDecimal("66181585"));
  31. europe.addCountry(uk);
  32. Country france = new Country(new BigDecimal("64979548"));
  33. europe.addCountry(france);
  34. Country italy = new Country(new BigDecimal("59359900"));
  35. europe.addCountry(italy);
  36. Country spain = new Country(new BigDecimal("46354321"));
  37. europe.addCountry(spain);
  38. Country brazil = new Country(new BigDecimal("209288278"));
  39. southAmerica.addCountry(brazil);
  40. Country mexico = new Country(new BigDecimal("129163276"));
  41. southAmerica.addCountry(mexico);
  42. Country colombia = new Country(new BigDecimal("49065615"));
  43. southAmerica.addCountry(colombia);
  44. Country argentina = new Country(new BigDecimal("44271041"));
  45. southAmerica.addCountry(argentina);
  46. Country peru = new Country(new BigDecimal("32165485"));
  47. southAmerica.addCountry(peru);
  48. Country us = new Country(new BigDecimal("324459463"));
  49. northAmerica.addCountry(us);
  50. Country canada = new Country(new BigDecimal("36624199"));
  51. northAmerica.addCountry(canada);
  52. Country australiaCountry = new Country(new BigDecimal("24450561"));
  53. australia.addCountry(australiaCountry);
  54. Country papuaNewGuinea = new Country(new BigDecimal("8251162"));
  55. australia.addCountry(papuaNewGuinea);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement