我需要一个程序,它需要一个两位数,例如“22”并返回“22”。我为 main 方法启动了以下内容,但对 string 方法没有任何内容
static string TwoDigit(int n)
{
}
static void Main(string[] args)
{
for (int i = 0; i <= 19; i++)
Console.WriteLine("{0}: {1}", i, TwoDigit(i));
for (int i = 20; i <= 110; i += 7)
Console.WriteLine("{0}: {1}", i, TwoDigit(i));
}