问答详情
源自:5-4 算法——查找(一)

为什么这样输入正确呢?为什么是i < 7呢?

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            int[] score = new int[] {89,39,100,51,94,65,70 };//分数

            Console.Write("不及格的有:");

            for (int i = 0; i < 7; i++)

            {

                if(score[i] < 60 )//筛选条件

                    Console.Write(score[i]+",");

            }

        }

    }

}


提问者:慕体303 2020-04-19 10:32

个回答

  • Lumoose
    2020-04-19 16:57:52
    已采纳

    因为你int数组里,有7个分数啊,也可写成 i<score.Length