Skip to content

Instantly share code, notes, and snippets.

@gavr123456789
Created February 24, 2019 11:26
Show Gist options
  • Save gavr123456789/7e518f61ea5e83edc7aa95c240631fb7 to your computer and use it in GitHub Desktop.
Save gavr123456789/7e518f61ea5e83edc7aa95c240631fb7 to your computer and use it in GitHub Desktop.
int func (int k, int n){
return k<<n;
}
void main(string[] args) {
print(@"$(func(3,4))");
}
@gavr123456789
Copy link
Author

Возвращение k2^n только битовыми операциями
Return k
2^n only by bit operations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment