“graus f a c” Respostas de código

converter Fahrenheit em Celsius

import java.util.Scanner;

public class Main {

    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int far = sc.nextInt();
        int cel = (far - 32) * 5/9;
        System.out.printf("%d Fahrenheit is %d Celsius", far, cel);
    }
}
C Will

graus f a c

c/5 = (f-32/9)
Busy Beaver

Respostas semelhantes a “graus f a c”

Perguntas semelhantes a “graus f a c”

Mais respostas relacionadas para “graus f a c” em C

Procure respostas de código populares por idioma

Procurar outros idiomas de código