Advertisements
Advertisements
प्रश्न
Write a program to generate the sequence: –5, 10, –15, 20, –25….. up to n, where n is an integer input by the user.
उत्तर
The given sequence is: –5, 10, –15, 20, –20
The numbers in the sequence are multiples of 5 and each number at the odd place is negative, while the number at the event place is positive. The series can be generated by checking each index for odd-even and if it is odd, it will be multiplied by '-1'.
Program:
num = int(input("Enter the number: "))
for a in range(1,num+1):
if(a%2 == 0):
print(a * 5, end=",")
else:
print(a * 5 * (-1),end=",")
The print(a*5*(-1)**a) statement can be also used inside 'for' loop as for even values of a, (-1)a will return '1' and for odd, it will return (-1).
Program:
num = int(input("Enter the number: "))
for a in range(1,num+1):
print(a*5*(-1)**a, end=",")
OUTPUT:
Enter the number: 6
-5,10,-15,20,-25,30
APPEARS IN
संबंधित प्रश्न
What is the purpose of the range() function? Give one example.
Find the output of the following program segment:
for i in range(20,30,2):
print(i)
Find the output of the following program segment:
country = 'INDIA'
for i in country:
print (i)
Find the output of the following program segment:
for x in range(1,4):
for y in range(2,5):
if x * y > 10:
break
print (x * y)
Write a function to print the table of a given number. The number has to be entered by the user.
Write a program to find the sum of 1 + 1/8 + 1/27......1/n3, where n is the number input by the user.
Write a program to print the following pattern:
* * * * * * * * * * * * * |
Write a program to print the following pattern:
1 2 1 2 3 2 1 2 3 4 3 2 1 2 3 4 5 4 3 2 1 2 3 4 5 |
Write a program to print the following pattern:
1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 |
Write a program to print the following pattern:
* * * * * * * * |