私は 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 の整数を表示する関数を作成しました。