摘要:
带有判别式的记录 Example program > e_c20_p1.ada -- Chapter 20 - Program 1 with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedu 阅读全文
摘要:
Example program > e_c19_p1.ada -- Chapter 19 - Program 1 with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedure Summer 阅读全文
摘要:
在本教程的第1部分中,我们详细介绍了子程序的主题,但是还有许多其他的事情需要讨论,因此我们将返回到子程序中来了解更高级的主题。 默认参数 Example program > e_c18_p1.ada -- Chapter 18 - Program 1 with Ada.Text_IO, Ada.In 阅读全文
摘要:
使用动态字符串 Example program > e_c16_p4.ada -- Chapter 16 - Program 4 with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_text_IO; use Ada.Integer_Text_IO; 阅读全文
摘要:
动态字符串包 Example program > e_c16_p3.ada -- Chapter 16 - Program 3 -- This is a dynamic string package which can be used as an aid -- in writing string i 阅读全文
摘要:
访问类型是不一样的 Example program > e_c13_p1.ada -- Chapter 13 - Program 1 with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; proced 阅读全文
摘要:
我们第一次看记录 Example program > e_c12_p1.ada -- Chapter 12 - Program 1 with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedu 阅读全文
摘要:
字符类型的快速回顾 Example program > e_c11_p1.ada -- Chapter 11 - Program 1 with Ada.Text_IO; use Ada.Text_IO; procedure Chars is My_Char : CHARACTER; Another 阅读全文
摘要:
我们的第一个阵列 Example program > e_c10_p1.ada -- Chapter 10 - Program 1 with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO, Ada.Integer_Text_IO; procedu 阅读全文
摘要:
LET'S LOOK AT A PROCEDURE Example program > e_c08_p1.ada with Ada.Text_IO; use Ada.Text_IO; procedure Proced1 is procedure Write_A_Line is begin Put(" 阅读全文