⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exp03_07.c

📁 《C语言程序设计教程、实验与练习》 源文件下载
💻 C
字号:
#include <stdio.h>
#include <conio.h>
main()
{/*this program shows the colorful text. */
 int x,y;

 printf("this program is interesting!\n");
 clrscr();
 gotoxy(30,10);
 textcolor(BLUE);
 textbackground(GREEN);
 cprintf("HOW ARE YOU \n");
 cprintf("Are you OK?\n\r");
 cprintf("123456789");
 gotoxy(5,12);
 textbackground(RED);
 clreol();
 x=35;
 y=20;
 gotoxy(x,y);
 textattr(BLINK+(RED<<4)+YELLOW);
 cprintf("x=%d,y=%d",x,y);
 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -