为什么我在运行代码时什么也看不见? 我使用DOSBox。
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <dos.h>
#include <conio.h>
#include <bios.h>
#include <ctype.h>
#include <math.h>
int main() {
int gdriver = DETECT,gmode = 0;
initgraph(&gdriver,&gmode,"C:\\TC\\BGI");
struct time t;
moveto(5,10);
outtext("Hello");
moveto(6,11);
outtext("World**strong text**");
moveto(1,24);
outtext("Press: 1-About_Author, 2-Current_Time,ESC to EXIT");
closegraph();
return 0;
}
答案 0 :(得分:0)
你的代码是对的。问题在于您为搜索显示驱动程序文件"C:\\TC\\BGI"
而提供的路径。这通常是因为tc
不是已安装驱动器的根目录,或者您使用的.exe
文件路径不是c:\\TC
。用"..//bgi"
替换路径。这将从bin
(当前工作目录)重定向到bgi。