为了账号安全,请及时绑定邮箱和手机立即绑定

循环嵌套+三元运算符

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

 {               

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

      {              

          Console.Write((row == col | row + col == 6) ? " O " : ".");  

      }  

      Console.WriteLine();      

  }

正在回答

1 回答

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            //请完善代码

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

            {

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

                {

                    // if(j==i||j==6-i)

                    // {

                    //     Console.Write("o");

                    // }

                    // else

                    // {

                    //     Console.Write(".");

                    // }

                    Console.Write((j==i||j==6-i)?"o":".");    

                }

                Console.Write("\n");

            }

        }

    }

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

循环嵌套+三元运算符

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信