easyx里使用inputbox函数举例
时间: 2024-03-14 18:44:31 浏览: 189
easyx教程和实例
5星 · 资源好评率100%
好的,以下是一个使用EasyX中的inputbox函数的示例代码:
```c++
#include <graphics.h>
#include <conio.h>
int main()
{
initgraph(640, 480);
char name[20];
inputbox_getline("Please enter your name:", "Name", name, 20);
outtextxy(100, 100, "Hello, ");
outtextxy(200, 100, name);
getch();
closegraph();
return 0;
}
```
这个程序会在屏幕上弹出一个对话框,要求用户输入自己的名字。用户输入后,程序会将名字显示在屏幕上。注意,这个程序假设用户的名字不超过20个字符。如果用户输入的名字超过了这个长度限制,程序可能会出现未知的行为。
阅读全文