不改变数组

来源:6-1 练习题目

慕尼黑6021033

2023-07-23 02:04

            string[,] t={{"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"},{"89","90","98","56","60","91","93","85"}};

            int b=0,c=0;

            for(int a=0;a<t.GetLongLength(1);a++){

                if(Convert.ToInt32(t[1,a])>c){c=Convert.ToInt32(t[1,a]);

                b=a;

                }

            }

            Console.Write("分数最高的是{0},分数是{1}",t[0,b],t[1,b]);

写回答 关注

1回答

  • qq_半城浮华_0
    2024-02-01 11:07:53

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace projAboveAvg

    {

        class Program

        {

            static void Main(string[] args)

            {

                int avg = 0;

                int sum = 0;

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

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

                foreach(int x in scores){

                    sum+=x;

                }

                avg=sum/(names.Length);

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

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

                    if(scores[i]>avg){

                        Console.Write(names[i]);

                    }

                }

                

                

            }

        }

    }


C#开发轻松入门

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

254117 学习 · 1459 问题

查看课程

相似问题