欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#输出心形图案(二)

程序员文章站 2022-07-12 22:59:55
...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
       static void Main(string[] args)
       {
           float y,x, a;
           for (y =1.5f; y > -1.5f; y -= 0.1f)
           {
              for (x = -1.5f; x < 1.5f;x += 0.05f)
              {
                 a = x * x + y * y - 1;
                 Console.Write(a * a * a - x * x * y * y * y<= 0.0f ? '*' : ' ');
              }
              Console.WriteLine();
           }
          Console.ReadLine();

       }
    }
}

注:出处为蓝桥杯比赛练习题。

运行结果:
C#输出心形图案(二)


相关标签: c#