Skip to main content

Program to Print the number from 100 to 1

C     Program to Print the number from 100 to 1
       write(*,*)'The numbers are given below:'
       do i=1,100
       j=101-i
       write(*,*)j
       end do
       end

Comments