Jump to content
Fórum Script Brasil
  • 0

Problema com a Classe Scanner


RANIEL NOGUEIRA

Question

Olá Pessoal estou mais um vez por aqui com uma duvida em um código, minha classe Scanner não lê dados do tipo DOUBLE

import java.util.*;

public class Operadores_Aritmeticos {

    public static void main(String []args) {

    Scanner scan = new Scanner(System.in);
    /**Nessa linha mostra
    um Scanner para String*/
    System.out.print("Qual seu nome?:");
    String nome = scan.next();
    System.out.print("Digite a primeira Nota:");
    double nota1 = scan.nextDouble();

    System.out.print("Digite a segunda Nota:");
    double nota2 = scan.nextDouble();/**Já nessa linha
    um Scanner para dado do tipos inteiro*/

    System.out.print("Digite a Terceira Nota:");
    double nota3 = scan.nextDouble();


    System.out.print("Digite a Quarta Nota:");
    double nota4 = scan.nextDouble();

    System.out.println("******************Resultado******************");

    System.out.print(nome+" sua media foi:"+(nota1+nota2+nota3+nota4)/4);

    }

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...