EasyX中怎么调整输出字体的间距?
#include <conio.h>
#include<stdio.h>
#include<locale.h>
#include <graphics.h>
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;
}
现在输出的效果
我想要达到的结果
求大家指点!