关于本小杰的例子

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

星辰的泪

2018-07-27 09:00

https://img1.mukewang.com/5b5a6e8700019aac10560936.jpg

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace _20180727

{

    class Program

    {

        static void Main(string[] args)

        {

            int[,] score = new int[4, 2] { { 89, 96 }, { 69, 40 }, { 78, 96 }, { 100, 89 } };

            Console.WriteLine("同学们的分数是:");

            for (int i = 0; i < score.GetLongLength(0); i++) ;

            {

                Console.WriteLine("语文:{0},数学:{1}", score[i, 0], score[i, 1]);

            }

        }

    }

}



为什么会出错呢?求大神解答下


写回答 关注

1回答

  • 李泽双木林
    2018-07-27 12:40:24
    已采纳

    14行的分号删掉

    星辰的泪

    谢谢你

    2018-07-30 10:45:57

    共 1 条回复 >

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题