Ecco la soluzione al problema 5 in Haskell: divisibilefinoan (x, n) |n==1 = if(x `mod` n)==0 then True else False |otherwise = if(x `mod` n)==0 then divisibilefinoan (x, (n-1)) else False loop n = if(… continua →
Satius est supervacua sciremanuel91 wrote 3 months ago: Ecco la soluzione al problema 5 in Haskell: divisibilefinoan (x, n) |n==1 = if(x `mod` n)==0 then Tr … more →