Computer Science, asked by akshatmishra1309, 8 months ago

Write a program to print odd numbers between 51 to 100

Answers

Answered by aditya789
2

Answer:

You must specify the coding language but here is the answer for python:

start, end = 51, 100

# iterating each number in list

for num in range(start, end + 1):

# checking condition

if num % 2 != 0:

print(num, end = " ")

Hope it helps

Mark as brainliest.

Answered by rekhargoyal16
1

Explanation:

Reduce each of the following fractions into its simplest form 72/90

Similar questions