Login
...or Sign up
Home
Search
Search Code Snippets
Search People
Search
Code Snippets
People
1 Code Snippet found matching lectura desde teclado;
//Lectura de un texto por teclado //y presentacion del texto por pantallla import java.io.*; public class interfaz_teclado_pantalla { public static void main(String [] args) { //leer por teclado un string try{ InputStreamReader leer = new InputStreamReader(System.in); BufferedReader buff = new BufferedReader(leer); System.out.print("Escriba el texto: "); String texto = buff.readLine(); //salida por pantalla del texto introducido System.out.println(texto); } //leer del teclado como String catch(java.io.IOException ioex) {} } }
Interfaz_teclado_pantalla
Uploaded on
4/9/2009 3:23:45 PM
Programming Language:
java
By:
josino
See more code snippets of
josino
lectura desde teclado;
1
Help
Help by email
What is Naslu?
|
About Naslu
|
Contact
|
Terms of Use
|
Downloads
|
Webprogramacion.com
|
Blog
|
Top
Links
Select language:
Español
|
English
© 2009 naslu.com