import java.util.*;
public class HelloUser
{
public static void main(String[] args)
{
GetUserInput();
}
private static void GetUserInput()
{
String strInput;
Scanner in = new Scanner(System.in);
System.out.println("Enter your first name: ");
strInput = in.nextLine();
in.close();
System.out.println("Hello " + strInput);
}
}
PowerShell: Read Excel to Create Inserts
16 hours ago
0 comments:
Post a Comment