EasyX如何调整字体的间距?(语言-c++)

EasyX中怎么调整输出字体的间距?
#include 
#include
#include
#include  

using namespace std;

int main()
{
    setlocale(LC_ALL, "zh-CN");

    initgraph(1000, 1000);

    wchar_t text[] = L"ABCDEFG";

    outtextxy(300, 300, text);
    
    while (1)
        
    system("pause");
    return 0;
}

现在输出的效果

img

我想要达到的结果

img

求大家指点!

问题解决了吗

http://t.csdn.cn/xRRXa(详解)
setw函数了解一下,
#include
#include
using namespace std;
int main()
{
int a[] = { 1,2,3 };
for (int i = 0; i < sizeof(a) / sizeof(int); i++)
{
cout << setw(4) << a[i];
}
}

img


http://t.csdn.cn/F5Fzx
是是是