Feeds
Discussion
Hello guys, I am new to MatLab and I made a code to get the GCD of a number but I suspect it could bbe better. Any tips?
n= input('Escolhe um número inteiro postivo. ') primo=true; i=2; while i<n if mod(n,i)==0; primo=false; ...
13일 전 | 0
Discussion
I am new on matla and this is my attempt on doing a code to get the GCD. Any tips?
n= input('Escolhe um número inteiro postivo. ') primo=true; i=2; while i<n if mod(n,i)==0; primo=false; ...
13일 전 | 0
Discussion
I want to know thge best code to get the max div of a number
n= input('Escolhe um número inteiro postivo. ') primo=true; i=2; while i<n if mod(n,i)==0; primo=false; ...
13일 전 | 0
Discussion
max_div
n= input('Escolhe um número inteiro postivo. ') primo=true; i=2; while i<n if mod(n,i)==0; primo=false; ...
13일 전 | 0
