Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

problemas no exercício nomeidade #36

Open
perucci17 opened this issue Jan 6, 2023 · 2 comments
Open

problemas no exercício nomeidade #36

perucci17 opened this issue Jan 6, 2023 · 2 comments

Comments

@perucci17
Copy link

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);

    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

@ghost
Copy link

ghost commented Jan 9, 2023

também estou com a mesma dúvida! Aparece "Resource leak: 'scan' is never closed Java" no vscode

@cami-la
Copy link
Owner

cami-la commented Jan 10, 2023

Oie, tudo bem? (:

Então, tentem iniciar as variáveis:

String nome = "":
int idade = 0;

E me digam se deu certo? 😊

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants