运行失败,求问哪里错了?

来源:6-8 最终项目

慕莱坞5295872

2022-12-04 16:42

sing System;

using System.Collections.Generic;

using System.Text;


namespace projAboveAvg

{

    class Program

    {

        static void Main(string[] args)

        {

            int[]score=new int[]{90,65,88,70,46,81,100,68};

            string[]name=new string[]{"景珍","林惠洋","成蓉","洪南昌","龙玉民","单江开","田武山","王三明"};

            int sum=0,avg=0;

            

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

            {

                sum+=score[i];

            }

            avg=sum/score.Length;

              Console.WriteLine("平均分是{0},高于平均分的有:",avg);

            for(i=0;i<score.Length;i++)

            {

                if(score[i]>avg)

                Console.WriteLine(name[i]+" ");

               

            }

           

            

        }

    }

}


写回答 关注

6回答

  • weixin_慕九州3115940
    2023-08-24 23:18:14

     {

                int[] score = new int[] { 90, 65, 88, 70, 46, 81, 100, 68 };


                string[] name = new string[] { "景珍", "林惠洋", "成蓉", "洪南昌", "龙玉民", "单江开", "田武山", "王三明" };

                int sum = 0, avg = 0;

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

                {

                    sum += score[i];

                }

                avg = sum / score.Length;

                Console.WriteLine("平均分是{0},高于平均分的有:", avg);

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

                {

                    if (score[i] > avg)

                        Console.WriteLine(name[i] + " ");

                }

    }

    这样就没问题了


    慕虎4528...

    输出错了

    2023-10-09 11:46:08

    共 1 条回复 >

  • 慕慕8394392
    2023-06-28 14:39:13

      string[] name=new string[8]{"景珍","林惠洋","成蓉","洪南昌","尤玉民","单江开","田武山","王三明"};

                int[] score = new int[8]{90,65,88,70,46,81,100,68};

                int sum =0,avg=0;

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

                {

                    sum+=score[i];

                }

                avg=sum/score.Length;

                Console.WriteLine("平均分:{0}",avg);

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

                {

                    if(score[i]>avg)

                        Console.Write("{0}"+" ",name[i]);

                }


    慕虎4528...

    你输出错了、

    2023-10-09 11:45:49

    共 1 条回复 >

  • 慕神2522687
    2023-03-25 19:46:01

     for(int i=0,i<score.Length;i++) // 这句错了,int i=0; 分号不是逗号


    Console.WriteLine(name[i]+" "); // 输出要求姓名在同一行上,WriteLine输出一个名字后会换行




    weixin... 回复阿鑫太南了

    第二个for(i=0;i<score.Length;i++) i=0之前要加int

    2023-05-05 19:49:09

    共 2 条回复 >

  • saizgt
    2023-01-07 09:50:38

    using System;


    using System.Collections.Generic;


    using System.Text;




    namespace projAboveAvg


    {


        class Program


        {


            static void Main(string[] args)


            {


                int[] score = new int[] { 90, 65, 88, 70, 46, 81, 100, 68 };


                string[] name = new string[] { "景珍", "林惠洋", "成蓉", "洪南昌", "龙玉民", "单江开", "田武山", "王三明" };


                int sum = 0, avg = 0;




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


                {


                    sum += score[i];


                }


                avg = sum / score.Length;


                Console.WriteLine("平均分是{0},高于平均分的有:", avg);


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


                {


                    if (score[i] > avg)


                        Console.Write(name[i] + " ");




                }

            }

        }

    }


    saizgt

    for (int i = 0; 分号写成逗号了; for (int i = 0; 第二次的时候int 不能省略

    2023-01-07 09:54:51

    共 1 条回复 >

  • weixin_慕桂英7045657
    2023-01-05 12:18:17

    第一行using  少了个u   

    avg = sum / score.Length  不能这样写,要直接写8

  • weixin_慕慕4507280
    2022-12-21 11:24:09

    我猜是 平均分是{0},  这段最后的这个逗号没有用中文逗号

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题