-
-
Save leha-bot/93d0beb2639240a89aafdcdd978ef239 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template<typename T> // описываем типы шаблонной функции | |
void binary_form(T TYPE) { | |
int z; | |
for (char j = sizeof(T) * 8 - 1; j >= 0; j--) { | |
z = ((T)1) << j; | |
std::cout << ((TYPE & z) != 0) ? 1 : 0; // тернарный оператор ?:. Если условие до знака вопроса истинно, | |
// то возвращает то, что между вопросом и двоеточием, если не истинно, то возвращает то, что после двоеточия и до конца операции | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment