Les dejo mi codigo por si necesitan una guia:
import java.util.Scanner;
/**
*
* @author Miguel
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Ingrese los grados Celsius: ");
double gradosCelsius = scanner.nextInt();
double gradosFahrenheit = (gradosCelsius * 1.8) + 32;
System.out.println("Los grados Fahrenheit son : " + gradosFahrenheit);
}
}