Text.cpp
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #include <conio.h>
  2. void main(void)
  3. {
  4. textcolor(YELLOW+BLINK);
  5. textbackground(11);
  6. gotoxy(35,15);
  7. cprintf("This is a test");
  8. getch();
  9. }