入门新手求解
c吧
全部回复
仅看楼主
level 3
C#
为什么我加了main,反而不运行?
2025年02月01日 09点02分 1
level 5
帮你修改了一下
using System;
class Program
{
static void Main(string[] args)
{
int[] day = new int[] { 31, 28, 31, 30, 30, 30, 30, 30, 30, 30, 31, 30 };
for (int i = 0; i < 12; i++)
{
Console.WriteLine((i + 1) + "月有" + day[i] + "天");
}
Console.ReadLine();
}
}
2025年02月02日 06点02分 2
level 5
不能用中文的括号
2025年02月02日 06点02分 3
1