Electronic Notary
This should be a thing for the state of Missouri and others. All the bigger states like TX, CA, GA, and FL is doing this method. This is...
package chapter5; import java.util.Scanner; /* * OUR FIRST METHOD * Write a method that asks a user for their name, then greets them by name. */ public class Greetings { public static void main(String args[]){ System.out.println("Enter your name:"); Scanner scanner = new Scanner(System.in); String name = scanner.next(); scanner.close(); greetUser(name); } public static void greetUser(String name){ System.out.println("Hi there, " + name); } }