Introduction - If you have any usage issues, please Google them yourself
Determine how many primes are there between 101-200 and output all the prime numbers.
1. program analysis: the method of judging the prime number: 2 to sqrt (this number) is removed by one number, and if it can be removed,
It is shown that this number is not a prime number, and the other is a prime number.