Informática, perguntado por ellem1086, 7 meses atrás

O programa abaixo possui erros de sintaxe e
por isso não pode ser compilado,
identifique-os e mostra a sintaxe correta
para que possa fazer a conversão de
temperatura corretamente .
import java.util.Scanner;
Public class Programa4 {
public static void main(String args[]) {
Scanner dado = new Scanner();
System.out.println("Digite a
temperatura em graus Fahrenheit:");
float fahrenheit Float.parseFloat
(dado);
Float celcius= (fahrenheit - 32) / 1.8f;
System.out.println("A temperatura
"'+fahrenheit +" graus fahrenheit será " +
celcius+" graus celcius");
}
}​


franklyn1998: ta ai

Soluções para a tarefa

Respondido por franklyn1998
0

Resposta:

o erro foi a conversão

Explicação:

import java.util.Scanner;

class Teste {

public static void main(String args[]) {

 Scanner dado = new Scanner(System.in);

 float fahrenheit;  

 System.out.println("Digite a temperatura em graus Fahrenheit:");

 fahrenheit = dado.nextFloat();

 

 Float celcius= (fahrenheit - 32) / 1.8f;

 System.out.println("A temperatura "+fahrenheit +" graus fahrenheit será " +celcius+" graus celcius");

 

 dado.close();

}

Perguntas interessantes