using System;
public class Program
{
public static void Main()
//Viết hàm đệ quy in mảng a gồm n phần tử(n<=100))
Console.Write("Nhap so phan tu: ");
int s = Convert.ToInt32(Console.ReadLine());
int[] arr = new int[s];
int e=0;
for(int i=0; i<s; i++)
Console.Write("Phan tu thu {0}: ",i+1);
arr[i] = Convert.ToInt32(Console.ReadLine());
}
info(arr,s,e);
public static void info(int[] a, int spt, int i)
if(i==spt-1)
Console.Write(a[i]);
return;
else
info(a,spt,i+1);