public static void Main()
Console.Write("masukan jumlah data");
jlh = int.Parse(Console.ReadLine());
String [] nama = new string[jlh];
String [] alamat = new string[jlh];
int [] nohp = new int [jlh];
for(int brs = 0; brs< jlh ; brs ++)
Console.WriteLine("data{0}", brs + 1);
nama [brs] = Console.ReadLine();
Console.Write("alamat :");
alamat [brs] = Console.ReadLine();