代码正确,但提交后显示的是这样的错误,是什么原因呢?

来源:5-9 C#的二维数组的声明和访问

液体纸

2018-05-04 01:53

error CS5001: Program `Program.exe' does not contain a static `Main' method suitable for an entry point Compilation failed: 1 error(s), 0 warnings

为什么我会出现这样的错误?

写回答 关注

2回答

  • 慕仔1376766
    2019-05-13 16:40:13

    没问题,运行好着呢!

  • 液体纸
    2018-05-04 01:54:22

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace Test
    {
        class Program
        {
            static void Main(string[] args)
            {
                char[,] ch = { {'我','是','软'},{'件','工','程'},{'师','啦','!'}};
                Console.WriteLine("{0}{1}{2}",ch[1,1],ch[1,2],ch[2,0]);
            }
        }
    }

    这是我的代码

    慕移动044...

    没问题呀

    2022-03-18 18:14:07

    共 1 条回复 >

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题