SOS这样的问题百年不遇~~~~~~
我真够晕的,程序没有错误可就是运行不了~~有哪位高手帮我帮我运行运行#include<graphics.h>
#include<conio.h>
#include<stdio.h>
main()
{
int driver=DETECT,mode;
initgraph(&driver,&mode,"\\tc");
cleardevice();
outtext("Normal");
settextstyle(4,3,2);
outtext("Gothic");
settextstyle(1,3,7);
outtextxy("Sans Serif");
getch();
outtextxy(220,140,"Sans Serif font");
getch();
closegraph();
}
----------------解决方案--------------------------------------------------------
少打了一行!加一个头文件:inlcude<graphics.h>
----------------解决方案--------------------------------------------------------
怎么个没法运行。运行错误是什么啊?
----------------解决方案--------------------------------------------------------
#include<graphics.h> #include<conio.h> #include<stdio.h> main() { int driver=DETECT,mode; initgraph(&driver,&mode,"\\tc"); cleardevice(); outtext("Normal"); settextstyle(4,3,2); outtext("Gothic"); settextstyle(1,3,7); outtextxy("Sans Serif"); getch(); outtextxy(220,140,"Sans Serif font"); getch(); closegraph(); } 上面红色的代码写错了。 要么把改成outtext("Sans Serif"); 要么加上坐标
[此贴子已经被作者于2005-4-24 20:46:06编辑过]
----------------解决方案--------------------------------------------------------
为什么呢?
----------------解决方案--------------------------------------------------------