当前位置: 代码迷 >> C语言 >> SOS这样的问题百年不遇~~~~~~
  详细解决方案

SOS这样的问题百年不遇~~~~~~

热度:134   发布时间:2005-04-24 15:49:00.0
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(); }
搜索更多相关的解决方案: SOS  百年不遇  

----------------解决方案--------------------------------------------------------
少打了一行!加一个头文件:inlcude&lt;graphics.h&gt;
----------------解决方案--------------------------------------------------------
怎么个没法运行。运行错误是什么啊?
----------------解决方案--------------------------------------------------------
#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编辑过]


----------------解决方案--------------------------------------------------------
为什么呢?
----------------解决方案--------------------------------------------------------