Computer Science, asked by vanshansh1252, 1 month ago

Create an application to print the multiples of 10 from 10 till 100

Answers

Answered by regazhn
0

Answer:    program MultiplesOfNumber

   real InputNumber

   integer i

   print *, "Enter the number for which you wish the first 10 multiples."

   read *, InputNumber

   print *, "The first ten multiples of the input number are"

   do i = 1, 10

       print *, InputNumber * i

   enddo

   end program MultiplesOfNumber

Explanation:

Similar questions