Facebook
From Blondyn :), 7 Years ago, written in Java.
Embed
Download Paste or View Raw
Hits: 282
  1. package trening;
  2. import java.util.Scanner;
  3. import static java.lang.Math.*;
  4. import java.math.BigInteger;
  5. import java.io.File;
  6. import java.io.FileNotFoundException;
  7. public class trening {
  8.  
  9.         public static void main(String[] args) {
  10.                 int licznik;
  11.                 Scanner odczyt = new Scanner(System.in);
  12.                 System.out.print("Podaj liczbe: ");
  13.                 licznik=odczyt.nextInt();
  14.                 while(licznik>0){
  15.                         System.out.println("Bomba wybuchnie za... " + licznik);
  16.                 licznik--;
  17.                
  18.                
  19.                 }
  20.                 System.out.println("BOOM");
  21.         }
  22.        
  23.        
  24. }