Integer

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…
JavaF

Subtract Largest Integer

The program must accept N positive integers as the input. The program must subtract the integers from the largest integer among the N integers…
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

Integer – Sum of Digits

The program must accept an integer value N as a command line argument and print the sum of the digits in N.Example Input/Output…
PythonF

Integer – Place Values

The program must accept an integer N as the input. The program must print each place value in the integer N as the output. Boundary…
PythonF

Integer with Two Digits

The program must accept an integer N as the input. The program must print YES if the integer N is formed using exactly two digits. Else the…
PythonF

Integer – Count of Pairs

The program must an integer N as the input. The program must print the count C of pairs of positive integers X and Y so that the sum of X and…