Computer Science, asked by jillujose, 8 months ago

8. Print all the numbers between 1 and 500 that
are divisible by 50
for iin range(1.501,50):
print(i,end="t")​

Answers

Answered by Anonymous
0

Explanation:

Movement of a drawer of a table

A sewing machine

D

A moving bicycle& Reflect

Do we filter the bran out of wheat flour and sieve the dirt out of water or is the other

around? please don't spam other wiseIn Fig. 15.7, length of the field is 40 m and breadth

is 30 m. If the width of path (shaded

BC of AABC have been produced on both sides to points F and G

equal to X.

Jumping Number: A number is called Jumping Number if all adjacent

digits in it differ by only 1. All single digit numbers are considered as

Jumping Numbers. For example 7,8987 and 4343456 are Jumping

numbers but 796 and 89098 are not.

Input format

WLAN

The first line of the input contains T denoting the number of test cases.

Each test case contain a positive number X

Output format

Output all the jumping numbers less than X in sorted order. Jump to

example for better understanding.

Sample testcasesthis is in code

Answered by Anonymous
0

Answer:

hi..

Explanation:

#for printing the values between 1 and 500 which are divisible by 50

for i in range(1,501):

if i%50==0:

print(i,end="\t")

hope it helps you☺️

Similar questions