You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class MaiorDeIdade {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Digite sua idade:");
int idade = scanner.nextInt();
if (idade >= 18) {
System.out.println("Maior de idade!");
} else {
System.out.println("Menor de idade!");
} scanner.close();
}
import java.util.Scanner;
public class MaiorDeIdade {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
}