Complete the following Ada program and change the string constants. Change the values so the information correctly reflects your name, student number and e-mail address.
with Ada.Text_IO, Ada.Characters.Latin_1; use Ada, Ada.Characters; procedure Hello is Tab : Character renames Latin_1.HT; Name_1 : constant String := "Stansifer, Ryan"; Student_Id_1 : constant String := "XXX-YY-ZZZZ"; E_Mail_1 : constant String := "ryan@cs.fit.edu"; begin -- print name, student number and e-mail address -- separated by horizontal tabs. end Hello;Cut and paste the program from this WWW page and into the Ada IDE.
__ This program is all wrong procedure Bad; Total Hours : constant Integer := 1_2; S : Integer begen S : = 3; end Bad.
Fahrenheit = 9/5 Centigrade + 32Make the temperature 21 a constant in your programs. Print the equivalent temperature in Fahrenheit to standard input.
Notice that you cannot translate this directly into Ada: