import java.util.Scanner; public class TempConverter { public static void main(String args[ ]) { //declare variables first Scanner keyboard = new Scanner(System.in); //sample prompt statement System.out.println("Place your prompt here"); //sample keyboard input statements rawData = keyboard.nextDouble( ); charData = keyboard.nextLine( ); //What if there is only one char needed from the string? charData.charAt(0); } //closing main method } //closing class header