/////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //Empty Java File Template /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /*CS200---------------------------------------------------------------------- Semester: Year: Instructor: F.Porps Your Name: (insert your name here) Assignment # (insert assignment # here) Due: (insert due date here) File name: (insert Filename here).java ---------------------------------------------------------------------------------*/ //import API's needed here: public class Filename { public static void main(String args[ ]) { } //closing main method } //closing class header //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //Keyboard Input //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// import java.util.Scanner; Scanner keyboard = new Scanner(System.in); String input = keyboard.nextLine( ); //nextbyte, nextShort, nextInt, nextLong, nextFloat, nextDouble, nextBoolean char answer = input.charAt(0); //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //Screen Output //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// System.out.print("Place string literal here."); // + concatenate, may also contain variable identifiers System.out.println("Place string literal here."); // (forces newline)+ concatenate, may also contain variable identifiers System.out.printf("String literal and %s \n", u); //%s string, %c, %d, %0.0f