Assignment 2 of South Point School List in Python - Python Language
1663
Arnab De
19/11/2020
Write a program to input an even number N from the user. Next using a loop simultaneously generate all numbers from (N//2-1) to 1 and (N//2+1) to (N-1). After each pair of values is generated, check if the higher value is twice the lower value. If so, then print those pair of values.
For example, if N=24, pair of values generated will be (11,13), (10,14), (9,15), (8,16), (7,17), (6,18), (5,19), (4,20), (3,21), (2,22), (1,23) and for the pair (8,16), condition 2nd number is twice the 1st number is valid. Hence will print (8,16).
School Assignment 2020: South point School
L=[]
N=int(input("Enter a Even Number"))
for i in range((N//2)-1,0,-1):
temp=[]
temp.append(i)
L.append(temp)
c=0
for j in range((N//2)+1,N):
L[c].append(j)
c=c+1
for k in range(0,c):
if(L[k][0]*2 == L[k][1]):
print(L[k])