#include <graphics.h>
#include <conio.h>
#include <stdio.h>
int main()
{
// 初始化绘图窗口
initgraph(640, 480);
// 定义字符串缓冲区,并接收用户输入
char s[10];
InputBox(s, 10, _T("请输入半径"));
// 将用户输入转换为数字
int r;
sscanf(s, "%d", &r);
// 画圆
circle(320, 240, r);
// 按任意键退出
_getch();
closegraph();
}
输入的是官网文档的代码也报错,我的是VC2019