about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/2/my-app/src/main/java/com/mycompany/app/Beers.java
blob: b74a93b3fe4a4e6270629ae7ec1501757351e748 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.mycompany.app;

// Exercise 4
public class Beers
{
  public static void main(String... args)
  {
    for (int i = 9; i > 1; --i)
      System.out.printf(
        "%d bottles of beer we are going to drink, %d bottles of beer.\n"
        + "Now try to drink one, drink one,\n", i, i);
    System.out.print(
      "1 bottle of beer we are going to drink, 1 bottle of beer.\n"
      + "Now try to drink one, drink one,\n"
      + "Oh no, no bottles of beer to drink now.\n");
  }
}