Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1.  
  2. import java.util.Scanner;
  3.  
  4. public class hom3 {
  5.        
  6.    
  7.     public static void main(String[] args) {
  8.         Scanner sc = new Scanner(System.in);
  9.         System.out.println("Podaj liczbe produktów: ");
  10.         int quantity = sc.nextInt();
  11.         if (quantity ==0){
  12.             System.out.println("Podaj liczbe produktów: ");
  13.             int quantity1 = sc.nextInt();
  14.         }
  15.         int quantity=quantity1;
  16.         System.out.println(quantity);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement