Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
binpow
karbaev
Feb 29th, 2016
117
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++
0.22 KB
| None
|
0
0
raw
download
clone
embed
print
report
int
binpow
(
int
a,
int
n
)
{
int
res
=
1
;
while
(
n
)
if
(
n
&
1
)
{
res
*
=
a
;
--
n
;
}
else
{
a
*
=
a
;
n
>>=
1
;
}
return
res
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
buscar-productos.blade.php
PHP | 2 hours ago | 2.44 KB
simple youtube video to product
PHP | 9 hours ago | 3.71 KB
greetings human
10 hours ago | 0.03 KB
OoT rando seed 6/1
16 hours ago | 68.21 KB
Geofencing - Lot of Rollover Budget
22 hours ago | 0.48 KB
Preface prompt for offline apps
1 day ago | 2.31 KB
Untitled
1 day ago | 5.42 KB
Secrets.kdbx
2 days ago | 166.19 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!