问答详情
源自:4-10 编程练习

c#4-10编程课的答案是什么?

求代码

提问者:慕码人9385367 2017-07-18 08:40

个回答

  • 许徐如生
    2017-07-18 09:12:04
    已采纳

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

               for (int x = 1; x <= 7; x++)//循环7行
                {
                    for (int y = 1; y <= 7; y++)//循环7列
                    {
                        if (x == y || x + y == 8)//对角线打印O
                            Console.Write("O");
                        else
                            Console.Write(".");//其他位置打印.
                    }
                    Console.WriteLine();//换行
                }

                    Console.WriteLine();

            }

            }

        }

    }