1 Star 0 Fork 0

李凌志 / llz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
432.cpp 811 Bytes
一键复制 编辑 原始数据 按行查看 历史
llz 提交于 2019-06-15 14:22 . 432
#define _CRT_SECURE_NO_WARNINGS
#include <conio.h>
#include <graphics.h>
#include <conio.h>
#include <math.h>
#define High 480
#define Width 640
#definePiI 3.14159
int main()
{
initgraph(Width, High);
int center_x, center_y;
center_x = Width / 2;
center_y = High / 2;
int secondLength;
secondLength = Width / 5;
int secondEnd_x, secondEnd_y;
float secondAngle = 0;
while(1)
{
secondEnd_x = center_x + secondLength * sin(secondAngle);
secondEnd_y = center_y - secondLendth * cos(secondAngle);
setlinestyle(PS_SOLID, 2);
setcolor(WHITE);
line(center_x, center_y, secondEnd_x, secondEnd_y);
sleep(100);
setcolor(BLACK);
line(center_x, center_y, secondEnd_x, secondEnd_y);
secondAngle = secondAngle * 2 * PI / 60;
}
getch();
closegraph();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sanctions/llz.git
git@gitee.com:sanctions/llz.git
sanctions
llz
llz
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891