Skip to content

Instantly share code, notes, and snippets.

@Rafael11j
Created February 16, 2017 23:41
Show Gist options
  • Select an option

  • Save Rafael11j/3d3dd46fe2ff30bb861a296400188fd0 to your computer and use it in GitHub Desktop.

Select an option

Save Rafael11j/3d3dd46fe2ff30bb861a296400188fd0 to your computer and use it in GitHub Desktop.
package exercicícios;
import java.util.Scanner;
public class Exercício02 {
public static void main(String[] args) {
Scanner abre = new Scanner(System.in);
String nome;
int idade;
System.out.println("Digite seu nome: ");
nome = abre.nextLine();
System.out.println("Digite sua idade: ");
idade = abre.nextInt();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment