write a program to print 'hello' five times
Answers
Answered by
3
Answer:
with Ada.Text_IO;
use Ada.Text_IO;
for I in 1 .. 10 loop
Put_Line ("Hello");
end loop;
Similar questions