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
/*
Faça um programa que leia conjuntos de dois valores,
o primeiro representando o nome do aluno e o segundo representando a sua idade.
(Pare o programa inserindo o valor 0 no campo nome)
*/
public class Ex1_NomeEIdade {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String nome;
int idade;
while(true) {
System.out.println("Nome: ");
nome = scan.next();
if (nome.equals("0")) break;
System.out.println("Idade: ");
idade = scan.nextInt();
}
System.out.println("Continua aqui...");
}
Está dando os seguintes problemas:
Resource leak: 'scan' is never closed Java(53681799) Ln10, Col 17
The value of the local variable is not used Java (536870973) Ln 13, col13
Grato
The text was updated successfully, but these errors were encountered:
Bom dia
aplicando o código do exercício
import java.util.Scanner;
/*
Faça um programa que leia conjuntos de dois valores,
o primeiro representando o nome do aluno e o segundo representando a sua idade.
(Pare o programa inserindo o valor 0 no campo nome)
*/
public class Ex1_NomeEIdade {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
Está dando os seguintes problemas:
Resource leak: 'scan' is never closed Java(53681799) Ln10, Col 17
The value of the local variable is not used Java (536870973) Ln 13, col13
Grato
The text was updated successfully, but these errors were encountered: