Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

problem 3

program prob23
! print all numbers between low and high that are divisible by number
integer::i,low,high,m,n
read *,low,high,n
do i=low,high
m=mod(i,n)
if(m==0)then
print *,i
end if
end do
end program prob23

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.