当前位置: 代码迷 >> C语言 >> tc中的一些函数在vc中可用哪些函数替换?
  详细解决方案

tc中的一些函数在vc中可用哪些函数替换?

热度:235   发布时间:2008-03-15 13:06:02.0
tc中的一些函数在vc中可用哪些函数替换?
请问一下:下列tc中的一些函数在vc中分别可用哪些函数替换?(在vc哪些头文件下)
[bo]clrscr();
textmode(C40);
textcolor(BROWN);
gotoxy(25,3);
cputs(Msg);
bioskey(1)
sound(1200);
delay(50);
nosound(); [/bo]
多谢啊!
搜索更多相关的解决方案: 函数  Msg  BROWN  sound  bioskey  

----------------解决方案--------------------------------------------------------
没有
32 位 16位 工作机制不同.在VC中如学图形,另外学 opengl ,画笔,画刷.

[[it] 本帖最后由 xianshizhe111 于 2008-3-15 13:28 编辑 [/it]]
----------------解决方案--------------------------------------------------------
网上有
#include<stdlib.h>
   system("cls");   //--clrscr();
其它函数就真没类似的啦?
----------------解决方案--------------------------------------------------------
你再找找看..
----------------解决方案--------------------------------------------------------
据说是clrscr()的定义
void clrscr(void)   //clearscreen: gesamten Bildschirm leeren
{
     CONSOLE_SCREEN_BUFFER_INFO     csbiInfo;                             //variablendklaration
     HANDLE     hConsoleOut;
     COORD     Home = {0,0};
     DWORD     dummy;

     hConsoleOut = GetStdHandle(STD_OUTPUT_HANDLE);
     GetConsoleScreenBufferInfo(hConsoleOut,&csbiInfo);

     FillConsoleOutputCharacter(hConsoleOut,' ',csbiInfo.dwSize.X * csbiInfo.dwSize.Y,Home,&dummy);     //bis cursorposition leerzeichen ausgeben
     csbiInfo.dwCursorPosition.X = 0;                                     //cursorposition X koordinate festlegen
     csbiInfo.dwCursorPosition.Y = 0;                                     //cursorposition Y koordinate festlegen
     SetConsoleCursorPosition(hConsoleOut,csbiInfo.dwCursorPosition);     //den cursor an die festgelegte koordinate setzen
}
----------------解决方案--------------------------------------------------------
bioskey可以用kbhit()来代替,头文件conio.h
delay可以自己用clock()来做很简单。
----------------解决方案--------------------------------------------------------
  相关解决方案