Feeds
已回答
find the nearest larger integer to n(n=1234567),which is not divisible by any integer between [2:100]
It works now, thanks !!! n=1234567; a=0; while a==0 n=n+1; a=1; for j = 2:100 if mod(n,j)==0...
find the nearest larger integer to n(n=1234567),which is not divisible by any integer between [2:100]
It works now, thanks !!! n=1234567; a=0; while a==0 n=n+1; a=1; for j = 2:100 if mod(n,j)==0...
8 years 前 | 0
| 已接受
提问
find the nearest larger integer to n(n=1234567),which is not divisible by any integer between [2:100]
I am trying to find the nearest larger integer to n(n=1234567),which is not divisible by any integer between [2:100].The proble...
8 years 前 | 2 个回答 | 0
