Computer Science, asked by aashi771, 23 days ago

write a program to print 'hello' five times​

Answers

Answered by Bajpai3663
3

Answer:

with Ada.Text_IO;

use Ada.Text_IO;

for I in 1 .. 10 loop

Put_Line ("Hello");

end loop;

Similar questions