?? sc.txt
字號:
{ Sample program in TINY lanuage---computes facotrial}
read x; {input an integer}
if 0<x then {don’t compute if x<= 0 }
fact := 1;
repeat
fact := fact * x;
x := x-1
until x = 0;
write fact {output factorial of x}
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -