question archive n=int(input("Enter the number : ")) i=1 cnt=0 while(i<=n):    j=2    while(j<i):        if((j*(j+1))==i):            cnt=cnt+1            print("(",j,"*",j+1,"=",i,")")        j=j+1    i=i+1 print("nTotal succession : ",cnt)

n=int(input("Enter the number : ")) i=1 cnt=0 while(i<=n):    j=2    while(j<i):        if((j*(j+1))==i):            cnt=cnt+1            print("(",j,"*",j+1,"=",i,")")        j=j+1    i=i+1 print("nTotal succession : ",cnt)

Subject:Computer SciencePrice:3.86 Bought7

n=int(input("Enter the number : "))

i=1

cnt=0

while(i<=n):

   j=2

   while(j<i):

       if((j*(j+1))==i):

           cnt=cnt+1

           print("(",j,"*",j+1,"=",i,")")

       j=j+1

   i=i+1

print("nTotal succession : ",cnt)

pur-new-sol

Purchase A New Answer

Custom new solution created by our subject matter experts

GET A QUOTE

Answer Preview

Flow chart is the pictorial representation of the sequence of the code statement that are executed once the code run.

please see the attached file for the complete solution