plotter.c
来自「关于SHELL方面的」· C语言 代码 · 共 25 行
C
25 行
#include <conf.h>#include <kernel.h>#include <io.h>#include <tty.h>#include "game.h" int src;int nargs;int x;int y;int chint;plotter(){ int i; while (TRUE) { nargs = 3; newrecv(&src, &nargs, &x, &y, &chint); plotchar(x,y,(char) chint); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?