Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package out;
  2.  
  3. import java.applet.*;
  4.  
  5. public class Output
  6.  
  7. {
  8.  
  9. public static void main(String args[])
  10.  
  11. {
  12. System.out.println("Immetti un numero");
  13. Scanner input = new Scanner(System.in);
  14. String x = input.nextLine();
  15. System.out.println("Ho Letto" + x);
  16.  
  17.  
  18. }
  19.  
  20.  
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement