odd

JavaF

Sort – Odd & Even Ascending

An array of N numbers is passed as the input. The program must sort the odd numbers and even numbers separately in ascending order. The odd…
PythonF

Sum of Even & Odd Numbers

N numbers will be passed as input to the program. The program must print the sum of even numbers followed by the sum of odd numbers. Input…
PythonF

Remove the odd numbers

A number N is passed as  input. The program must remove all the odd digits in the passed number and display the number. If there are no…
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…