我正在尝试列出这些数字,例如:
1. 114
2. 115
3. 116
等等。我现在的代码是:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int num = 0;
int count = 114;
while (count < 146)
{
Console.WriteLine(num + "." + count);
Console.Read();
count++;
}
}
}
}
我得到的输出是 0=114,之后什么都没有。请帮忙