values

CF

Sum of Dice Values

Pairs of integers are passed as the input to the program. The integers in each pair represent values of two dice in a game. If both the values…
PythonF

First Five Values Divisible

Three numbers A, B and C are passed as input. The program must print the first five values that are divisible by A, B and C.Input Format:The…
CF

Common Part in string values

Two string values S1 and S2 are passed as input. The last portion of S1 will be the first portion of S2. The program must print this common…
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

Sum of ASCII Values

The program must accept a string S as the input. The program must print the sum of the ASCII values of all the characters in the string S.…
PythonF

Diamond Values

The program must accept an integer matrix of size R*C and consider all possible non overlapping 3*3 sub matrices and print…