Es. 1
Public
Given 3 integers as input, calculate the product. Python...
Es. 2
Public
On input an integer, print the previous and next integers....
Es. 3
Register
Given as input the number n and the percentage rate t, calculate the percentage p of n....
Es. 4
Register
Direct distribution: divide a value n into three parts directly proportional to the three values โโa, b, c....
Es. 5
Register
In input an integer, say how many hundreds, tens, units it is made up of....
Es. 6
Register
Determine the smallest number of 50, 20, 10 euro banknotes necessary to form a sum value....
Es. 7
Register
Given a time in seconds, calculate the corresponding value expressed in hours, minutes, seconds....
Es. 8
Register
Given a time in hours, minutes and seconds, calculate the corresponding value in seconds....
Es. 9
Register
Calculation of a given polynomial for a value x, real number, given in input (e.g. 2xยฒ+3x+1)....
Es. 10
Register
Round a positive real number N to the Mth decimal place. Formula: Rounded = INT(N*10^M + 0.5) / 10^M....
Es. 11
Register
Given two integers, swap their values โโwithout using a convenience variable....
Es. 12
Register
Given three integers, rotate their value (a -> b -> c -> a)....