标题:一个加easy图形库的小程序,有两行不理解,求指教
只看楼主
花脸
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:9
帖 子:788
专家分:907
注 册:2017-1-4
结帖率:95.37%
 问题点数:0 回复次数:0 
一个加easy图形库的小程序,有两行不理解,求指教
#include<stdio.h>
#include<graphics.h>
#include<math.h>
#define PI 3.14
int main()
{
    void welecome();
    initgraph(1200,600);
    setbkcolor(RED);
    cleardevice();
    welecome();
    getchar();
    return 0;
}
void welecome()
{
    settextcolor(YELLOW);
   
    int x = 500, y =200;
    for (int i = 0; i < 50; i++)
    {
        settextstyle(i, 0, L"华文行楷");
        int x = 500 + int(180 * sin(PI * 2 * i / 60));
        int y = 200 + int(180 * cos(PI * 2 * i / 60));
        cleardevice();
        outtextxy(x, y, L"情人节");
        outtextxy(x + 80, y + 60, L"献给某某某");
        Sleep(30);
    }
    getchar();
    cleardevice();
}

不清楚这两行确定文字的坐标具体是怎样得到的,求解释
int x = 500 + int(180 * sin(PI * 2 * i / 60));
int y = 200 + int(180 * cos(PI * 2 * i / 60));
搜索更多相关主题的帖子: 图形库 两行 include int void 
2017-09-18 20:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-480789-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.050206 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved