echonome java

Solutions on MaxInterview for echonome java by the best coders in the world

showing results for - "echonome java"
Alena
28 Apr 2018
1import java.util.Scanner;
2
3public class EchoNome {
4
5	public static void main(String[] args) {
6		// Miguel Fernandez Gonzalez
7
8		String nombre;
9		String mensaje;
10
11		Scanner teclado = new Scanner(System.in);
12
13		//
14		System.out.println("introduzca nombre: ");
15		nombre = teclado.nextLine();
16
17		//
18
19		mensaje = "O teu nome é: " + nombre;
20		System.out.println(mensaje);
21
22	}
23
24}
similar questions
queries leading to this page
echonome java