请问我这里哪里错了?

来源:5-7 C#的foreach关键字

慕体303

2020-04-27 11:49

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            string[] t =new  string[]{"C","Sh","a","rp"};

            //遍历字符串数组t

            foreach(string t in new)

            {

                Console.Write(x);

            }

        }

    }

}


写回答 关注

3回答

  • 青岛啤酒
    2022-09-09 16:55:42

     你的迭代变量是t, 输出的是x

  • weixin_慕妹9303318
    2020-07-01 14:29:05

    in的右边是数组名    数组名是t  不是new       

    in的左边是变量    用来输出

    然后他下面已经给了输出的变量名是x

    所以应该是foreach(string x in t)

  • qq_慕前端3598656
    2020-04-28 11:10:17

      foreach(string x in t)

                {

                    Console.Write(x);

                }


C#开发轻松入门

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

254117 学习 · 1459 问题

查看课程

相似问题