?? assessment_1.adb
字號:
--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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -