国旗

@[TOC## 如何利用Microsoft Visual Studio 2015 画出标准国旗`
首先安装EasyX 安装程序

https://easyx.cn/downloads/
2018春分版
1.先将旗面划分为4个等分长方形,再将左上方长方形划分长宽15×10个方格。
2.大五角星的中心位于该长方形上5下5、左5右10之处。大五角星外接圆的直径为6单位长度。
四颗小五角星的中心点,第一颗位于上2下8、左10右5,第二颗位于上4下6、左12右3,第三颗位于上7下3、左12右3,第四颗位于上9下1、左10右5之处。
4.每颗小五角星外接圆的直径均为2单位长度。四颗小五角星均有一角尖正对大五角星的中心点。
代码如下
*#include <graphics.h> // 引用图形库头文件
#include <math.h>
#include<conio.h>
const double PI = 3.1415927;
void DrawStar(int x, int y, int R, double arcbegin)
{
POINT pt[10];
double r = R
sin(18 * PI / 180) / sin(126 * PI / 180);//注意弧度与角度的区别
double arc = PI / 5.0;
double r1;
for (int i = 0; i < 10; ++i)
{
if (i % 2 == 0)
r1 = R;
else
r1 = r;
pt[i].y = sin(arcbegin + i
arc)r1 + y;
pt[i].x = cos(arcbegin + i
arc)r1 + x;
}
setfillcolor(RGB(255, 255, 0));
setcolor(RGB(255, 255, 0));
fillpolygon(pt, 10);
}
int main()
{
initgraph(900, 600); // 创建绘图窗口,大小为 900x600像素
setfillcolor(RGB(235, 0, 0));
setcolor(RGB(255, 255, 0));
fillrectangle(0, 0, 900, 600);
DrawStar(150, 150, 90, -PI / 2);
DrawStar(300, 60, 30, -PI / 2 + atan(3.0 / 5.0));
DrawStar(360, 120, 30, -PI / 2 + atan(3.0 / 5.0));
DrawStar(360, 210, 30, -PI / 2);
DrawStar(300, 270, 30, -PI / 2 + atan(3.0 / 5.0));
_getch();//按任意键继续
closegraph(); // 关闭绘图窗口

在这里插入图片描述
}`]**(这里写自定义目录标题)
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值