📄 eg_stat.c
字号:
#include <conio.h>
#include <graph.h>
#include <stdlib.h>
main()
{
int x, y;
_setvideomode( _VRES16COLOR );
while( _grstatus() == _GROK ) {
x = rand() % 700;
y = rand() % 500;
_setpixel( x, y );
}
getch();
_setvideomode( _DEFAULTMODE );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -