enum_case.adb.npp
来自「This contains the following topics and m」· NPP 代码 · 共 15 行
NPP
15 行
with Ada.Text_Io;use Ada.Text_Io;procedure Enum_case istype Colour is (Red,Blue,Green);Car_Colour : Colour;beginCar_Colour := Blue;case Car_Colour iswhen Red => Put("A red car"); New_Line;when Blue => Put("A blue car"); New_Line;when Green => Put("A green car"); New_Line;end case;end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?