Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package dolgozat;
  7.  
  8. import java.util.Scanner;
  9.  
  10. /**
  11.  *
  12.  * @author 18ludmil
  13.  */
  14. public class LudvigMilan20200226A {
  15.     public static void main(String[] args) {
  16.         System.out.println("Kérek egy számot 1 és 10 között:");
  17.         int szám;
  18.         Scanner beolvasó=new Scanner(System.in);
  19.         System.out.println("Szám:");
  20.         szám=beolvasó.nextInt();
  21.         System.out.println("A megadott szám: "+szám);
  22.         }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement