//Take an array of names as input from the user and print them on the screen. package Array; import java.util.*; public class PrintName { public static void main(String args[]) { Scanner sc = new Scanner(System.in); int size = sc.nextInt(); String names[] = new String[size]; //input for(int i=0; i