i want to make program that find prime number
3 ビュー (過去 30 日間)
古いコメントを表示
i made this program, but i couldnt find errors..
and i typed primecheck(11) on command window and i got
>> primefunction(11)
error: 'primefunction' undefined near line 1, column 1
this error..
function primecheck(p)
prime=1;
for d=2:sqrt(p)
if(rem(p,d)==0)
prime=0;
end
endfor
if(prime==1)
disp('the number is prime')
else
disp('the number is not prime')
end
endfunction
0 件のコメント
採用された回答
Image Analyst
2022 年 4 月 29 日
Instead of
endfunction
use
end
Instead of
endfor
use
end
5 件のコメント
Image Analyst
2022 年 4 月 30 日
OK you should probably switch to MATLAB. If you can't now, then maybe when you work for an organization that can afford to pay for it. There are probably Octave forums where you can ask questions.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Octave についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!