我是 c# 的新手,所以请忽略我的询问方式,我很困惑我的递归函数是正确的,但代码显示错误。请帮忙
这是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
void Print100(int n)
{
if (n >= 100)
{
Console.WriteLine();
return;
}
Console.WriteLine(n);
Print100(n + 1);
Console.WriteLine(n);
}
}
}
}
我创建了一个函数来使用递归显示 1-100 和 100-1 整数。