Commit d8d7f6d2 by Patryk Czarnik

\n

parent e60d927f
...@@ -19,7 +19,7 @@ public class P01_OdczytajWgId { ...@@ -19,7 +19,7 @@ public class P01_OdczytajWgId {
Scanner sc = new Scanner(System.in); Scanner sc = new Scanner(System.in);
while(true) { while(true) {
System.out.print("Podaj ID pracownika (0 kończy program): "); System.out.print("\nPodaj ID pracownika (0 kończy program): ");
Integer id = sc.nextInt(); Integer id = sc.nextInt();
if(id == 0) break; if(id == 0) break;
Employee emp = em.find(Employee.class, id); Employee emp = em.find(Employee.class, id);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment