using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace page72_6
{
class Program
{
static void Main(string[] args)
{
int[] numArr = { 1, 2, 3 };
string[] strArr={"4","5","6"};
for (int i = 0; i < numArr.Length; i++)
{
strArr[i] = Convert.ToString( numArr[i]);
Console.WriteLine(strArr[i]);
}
}
}
}
//請同學們自行發揮,只做個例子