Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python คำนวณ n+nm+nmm.......+n(m ครั้ง)


ในที่นี้ n จะได้รับค่าซึ่งเป็นค่าบวก m คือจำนวนครั้งที่ซีรีส์ทำงาน งานของเราคือการคำนวณชุดนี้

อัลกอริทึม

Step 1: Input n, m;
Step 2: Converting the number to string.
Step 3: Initializing result as number and string.
Step 4: Adding remaining terms.
Step 5: Concatenating the string making n, nn, nnn...
Step 6: Before adding converting back to integer.
Step 7: return sum.

โค้ดตัวอย่าง

# Python program to sum the series
def sumofseries(n, m):
   str1 = str(n)
   sum1 = n
   sumofstr1 = str(n)
   for i in range(1, m):
   sumofstr1 = sumofstr1 + str1
   sum1 = sum1 + int(sumofstr1)
   return sum1
   # Driver Code
   n = int(input("Enter the value of n"))
   m = int(input("Enter the value of m"))
sumofno = sumofseries(n, m)
print("SUM OF SERIES ::>",sumofno)

ผลลัพธ์

Enter the value of n3
Enter the value of m5
SUM OF SERIES ::> 37035