精華區beta b885060xx 關於我們 聯絡資訊
>==>發信人: What.bbs@sun.dyu.edu.tw (半個天才!!), 信區: programming >請問一下 > vc 是否有類似 Tc 的 clrscr() 指令 那就要用一些 Consol API 了 ex: HANDLE m_hConsole = GetStdHandle(STD_OUTPUT); SMALL_RECT m_srScrollRect = SMALL_RECT(0,0, 24, 79); CHAR_INFO m_ciCharInfo = (' ', 0); ScrollConsoleScreenBuffer( m_hConsole, // handle of a console screen buffer &m_srScrollRect, // address of screen buffer rect. to move NULL, // address of affected screen buffer rect. COORD(0, 0), // new location of screen buffer rect. &m_ciCharInfo // address of fill character and color ); -- ◎ Origin: 中央松濤站□bbs.ee.ncu.edu.tw From: home.at.moon