📄 t16.out
字号:
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.1441 statements executed in 0.30 seconds cpu time.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -