Advertisement
gastaojunior

Lista1-Ex4

Aug 8th, 2011
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class ex4 {
  4.  
  5.     public static void main(String[] args) {
  6.         // Leia um nome e escreva uma pequena frase usando o nome lido.
  7.         String nome;
  8.         Scanner entrada = new Scanner(System.in);
  9.        
  10.         System.out.println("Digite o seu nome:");
  11.         nome = entrada.nextLine();
  12.         System.out.println("O nome que voce digitou foi:" + nome);
  13.        
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement