package pacote; public class Pessoa { //atributos String nome; int idade; //Método construtor Pessoa(String nm, int id){ this.nome = nm; this.idade = id; } void imprimir() { System.out.println("Nome: " + this.nome); System.out.println("Idade: " + this.idade); } }