Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Zadanie_6 {
  4.  
  5. public static void main(String[] args) {
  6. int a;
  7. int b=1;
  8.  
  9. System.out.println("Podaj liczbe");
  10. Scanner scanner = new Scanner(System.in);
  11. a = scanner.nextInt();
  12. while(b<=a) {
  13. System.out.println(b++);
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement