দুটি সংখ্যাকে সহ-প্রাথম বলা হয় যদি তাদের মধ্যে কোনো সাধারণ মৌলিক গুণনীয়ক না থাকে (1 মৌলিক সংখ্যা নয়)
যেমন −
4 and 5 are co-primes 9 and 14 are co-primes 18 and 35 are co-primes 21 and 57 are not co-prime because they have 3 as the common prime factor
আমাদের এমন একটি ফাংশন লিখতে হবে যা দুটি সংখ্যা নেয় এবং সহ-প্রধান হলে সত্য প্রদান করে অন্যথায় মিথ্যা ফেরত দেয়
উদাহরণ
এই ফাংশনের জন্য কোড লিখি −
const areCoprimes = (num1, num2) => { const smaller = num1 > num2 ? num1 : num2; for(let ind = 2; ind < smaller; ind++){ const condition1 = num1 % ind === 0; const condition2 = num2 % ind === 0; if(condition1 && condition2){ return false; }; }; return true; }; console.log(areCoprimes(4, 5)); console.log(areCoprimes(9, 14)); console.log(areCoprimes(18, 35)); console.log(areCoprimes(21, 57));
আউটপুট
নিম্নোক্ত কনসোলে আউটপুট −
true true true false