⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 using_case_program.adb.npp

📁 This contains the following topics and more ADA versus C and Cplus plus Ada_training ADA 2005 for
💻 NPP
字号:
with text_io; use text_io;with ada.integer_text_io; use ada.integer_text_io;procedure using_case_program iscount :integer;begin   while (true) loop   get(count);case count is   when 3 => put("count is 3");new_line;   when 4 => put("count is 4");new_line;   when 6 => put("count is 6");new_line;   when others => put("count is out of range");new_line;end case;end loop;end;

⌨️ 快捷键说明

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