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();
}
}
}
注:出处为蓝桥杯比赛练习题。
运行结果:
上一篇: Linux下C语言使用openssl库加密算法RSA
下一篇: matlab正余弦画心形图案