Advertisement
Guest User

Project1BNameOffset.java Starter Code

a guest
Sep 19th, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Project1BNameOffset{
  4.     public static void main(String[] args){
  5.         Scanner kb = new Scanner(System.in);
  6.         System.out.print("Enter your full name: ");
  7.         String full = kb.nextLine();
  8.         //YOUR CODE HERE
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement