mirror of
https://hub.njuu.cf/TheAlgorithms/Python.git
synced 2023-10-11 13:06:12 +08:00
Correction: File solv01.py
Identifier 'max' changed in 'maxNumber' , since 'max' is a function.
This commit is contained in:
parent
8d9da8f623
commit
01f48e708d
@ -17,7 +17,7 @@ def isprime(no):
|
||||
return False
|
||||
return True
|
||||
|
||||
max=0
|
||||
maxNumber = 0
|
||||
n=int(input())
|
||||
if(isprime(n)):
|
||||
print n
|
||||
@ -31,8 +31,8 @@ else:
|
||||
for i in range(3,n1,2):
|
||||
if(n%i==0):
|
||||
if(isprime(n/i)):
|
||||
max=n/i
|
||||
maxNumber = n/i
|
||||
break
|
||||
elif(isprime(i)):
|
||||
max=i
|
||||
print max
|
||||
maxNumber = i
|
||||
print maxNumber
|
||||
|
Loading…
Reference in New Issue
Block a user