Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1.  
  2. import java.util.Scanner;
  3.  
  4. public class NollastaLukuun {
  5.  
  6. public static void main(String[] args) {
  7. Scanner lukija = new Scanner(System.in);
  8.  
  9. int syote = Integer.valueOf(lukija.nextLine()) ;
  10.  
  11. int luku = 0 ;
  12.  
  13. while (luku == syote) {
  14. luku++;
  15. System.out.println(luku);
  16. }
  17.  
  18.  
  19.  
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement