me.adb.npp
来自「This contains the following topics and m」· NPP 代码 · 共 16 行
NPP
16 行
with Ada.Text_IO; use Ada.Text_IO;--with Hello;-- include our previous procedureprocedure your_name isname :string(1..100); -- 100 character arraylast :natural; -- can only contain natural integersbeginput("Hello what is your name? ");get_line(name,last);for i in 1..10 loop -- i is implicity declaredput_line(" there " & name(1..last));-- & string concatenation-- name(1..last)- array sliceend loop; -- control structure labelledend;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?