assessment_1.adb.npp

来自「This contains the following topics and m」· NPP 代码 · 共 15 行

NPP
15
字号
--Self-assessment
--What do the following fragments of Ada 95 code do?
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
with Ada.Text_IO;         use Ada.Text_IO;
procedure assessment_1 is
   I : Integer;
begin
   I := 10;
   while I > 0 loop
      Put (I);
      I := I - 1;
   end loop;
   New_Line;
end assessment_1;

⌨️ 快捷键说明

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