Program that checks if a number is prime number

后端 未结 5 2329
情深已故
情深已故 2020-12-12 08:35

Hello I have created this program to check if a number is a prime number. It works but for some reason says that 999 is a prime number. Where is my mistake. It would be grea

5条回答
  •  伪装坚强ぢ
    2020-12-12 09:08

    Trace it. x starts with 2, then tests 999 % 2; it is 1, so else is executed, "Prime number!" is printed, and loop is broken out of. Program ends.

    Instead, you need to print "Prime number!" only when you tested all possibilities for x. The easiest way to do that is to unindent else: (and delete break there):

    for x in prime_range:
    
        if nnumber % x == 0:
            print 'Not a Prime Number!'
            break
    
    else:
        print 'Prime Number!'
    

    Python executes else of a for when for completes withoout being broken: exactly what you want.

提交回复
热议问题