odd

JavaF

First and Last Odd Digits

Given N positive integers, the program must print the integers if the first and last digits are odd digits. Boundary Condition(s):1 <= N…
CF

Smallest Possible Odd Integer

The program must accept an integer N as the input. The program must print the smallest possible odd integer using all the digits in N as the…
CF

Largest Possible Odd Integer

The program must accept an integer N as the input. The program must print the largest possible odd integer using all the digits in N…
CF

Interlace odd / even from A to B

Two numbers A and B are passed as input. The program must print the odd numbers from A to B (inclusive of A and B) interlaced with the even…
PythonF

All Possible Odd Integers

The program must accept an integer N as the input. The program must print the unique odd integers formed using all the digits…
PythonF

Print Odd or Even

The program must accept an integer N as the input. The program must print Odd if N is odd. Else the program must…