Java bootcamp · Lab 09

Celsius to Fahrenheit

easyMath8 minLesson: Math

Read the question, write Java on the right, then Run or Check.

QuestionHint and solution stay closed until you open them

Read Celsius as int; print Fahrenheit with F = C * 9 / 5 + 32.

Input. One integer.

Output. Fahrenheit.

Examples

Example 1
Input
0
Output
32
Example 2
Input
100
Output
212
Hint
  1. System.out.println(c * 9 / 5 + 32);
Show correct code

Peek only after you have tried. You can still Check your own version.

import java.util.Scanner;

public class Main {
  public static void main(String[] args) {
    Scanner in = new Scanner(System.in);
    int c = in.nextInt();
    System.out.println(c * 9 / 5 + 32);
  }
}
Main.javaJava 21 · javac · Ctrl + Enter runs
ResultIdle
Run to see output. Check grades the tests.