t16.in
来自「早期freebsd实现」· IN 代码 · 共 22 行
IN
22 行
program Main(input, output);procedure copy(var inp, out: text); var c: char; begin while not eof(inp) do begin while not eoln(inp) do begin c := inp^; out^ := c; put(out); get(inp); end; writeln; get(inp); end; end;begin copy(input, output);end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?