Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.*;
- public class Captura {
- public static void main(String[] args) throws IOException {
- BufferedReader lectura = new BufferedReader(new InputStreamReader(System.in));
- System.out.println("Escribe algo, lo que sea:");
- String dato_usuario = lectura.readLine();
- System.out.println("Escribiste: " + dato_usuario);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment