Advertisement
OlegB

H_W_01

Mar 1st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1. package com.company;
  2.  
  3. /**
  4.  * Created by Oleg on 28.02.2017.
  5.  */
  6. public class Population {
  7.     public static void main(String[] args) {
  8.         int France = 64847000;
  9.         int Germany = 80636124;
  10.         int Italy = 59797978;
  11.         int Spain = 46070146;
  12.         int Ukraine = 44405055;
  13.         System.out.println("France population = " + France + " people");
  14.         System.out.println("German population = " + Germany + " people");
  15.         System.out.println("Italian population = " + Italy + " people");
  16.         System.out.println("Spanish population = " + Spain + " people");
  17.         System.out.println("Ukrainian population = " + Ukraine + " people");
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement