Programa En Java
Enviado por slamer • 13 de Noviembre de 2012 • 300 Palabras (2 Páginas) • 522 Visitas
import java.io.*;
class ingresa_datos
{
public static void main(String arg[])throws IOException
{
BufferedReader entrada=new BufferedReader(new InputStreamReader(System.in));
String nombre,ap,am,sexo;
int edad;
System.out.print("Ingresa tu nombre:");
nombre=entrada.readLine();
System.out.print("\nIngresa tu apellido paterno:");
ap=entrada.readLine();
System.out.print("\nIngrese su apellido materno:");
am=entrada.readLine();
System.out.print("\nIngresa tu sexo:");
sexo=entrada.readLine();
System.out.print("\nIngresa tu edad:");
edad=Integer.parseInt(entrada.readLine());
System.out.println("-----Bienvenido-----\n"+"Tu nombre es:"+nombre+"\ntu ap es:"+ap+"\n"+"tu am es:"+am+"\ntu sexo es:"+sexo+"\n"+"tu edad es:"+edad);
System.out.println("y de ahora en adelante vida no sera igual");
}
}
...