Feedback | If you notice incorrect translations in Contester, please let author know.
|
|
Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb. Prepared by Ibrahim Mesecan.
Difficulty Beta
Write a program which has a function largest2spower. largest2spower function takes a number (n) and finds the largest power of two whose result is less than or equal to the given number n
(1 <= n <= 4.000.000.000)
Sample Run 1:
Enter a number:1000
Sample Output 1:
9 // 29=512 and 210=1024
Sample Run 2:
Enter a number:100
Sample Output 2:
6 // 26=64 and 27=128 Для отправки решений необходимо выполнить вход.
|