📄 exp03_07.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 + -