两数相加.txt

来自「简易却实用的编译器」· 文本 代码 · 共 14 行

TXT
14
字号
10 rem determine and print the sum of two integers
15 REM
20 rem input the two integers
30 input a
40 input B
45 rem
50 rem add integers and store result in c
60 let c = a + b
65 rem
70 rem print the result
80 print c
90 rem terminate program execution
99 end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?