ben3898
ben3898
10.03.2020 • 
Mathematics

A prime number is an integer greater or equal to 2 that is only divisible by 1 and by itself. The first few primes are: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47 … N is a prime if and only if it is not divisible evenly by any of the numbers from 2 to N−1. Let’s implement this decision as a function. In the same program numbers.cpp, add a function bool isPrime(int n); The function should return true if n is a prime, otherwise return false. Change the main function to test your new code.

Solved
Show answers

Ask an AI advisor a question