Commit e72a00e6 by Juan Cristaldo

Ejercicio 3 Realizado

parent 811c7df0
/*
* 3. Declara un String que contenga tu nombre, después muestra un mensaje de bienvenida
* por consola. Por ejemplo: si introduzco “Fernando”, me aparezca “Bienvenido Fernando”.
*/
package javaapplication;
import java.util.Scanner;
/**
*
* @author Juan Cristaldo
*/
public class Ejercicio03 {
public static void main(String[] args) {
// Se puede introducir cualquier nombre
// Scanner entrada = new Scanner(System.in);
// System.out.println("***Operaciones***");
// System.out.println("Ingrese su nombre");
// String nombre = entrada.nextLine();
String nombre = "Juan Cristaldo";
System.out.println("Bienvenido " + nombre);
}
}
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