Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Extended GCD
Fshl0
Feb 5th, 2021
276
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
e_gcd
(
int
a,
int
b,
int
&
x,
int
&
y
)
{
if
(
b
==
0
)
{
x
=
1
;
y
=
0
;
return
a
;
}
int
x1, y1
;
int
g
=
e_gcd
(
b, a
%
b, x1, y1
)
;
x
=
y1, y
=
x1
-
y1
*
(
a
/
b
)
;
return
g
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Methods used by hackers
CSS | 1 min ago | 0.26 KB
Documentation
CSS | 4 min ago | 0.26 KB
Leaked Method
CSS | 8 min ago | 0.26 KB
VNC SCRIPT 2/2: autoinput.vbs
VBScript | 5 hours ago | 0.23 KB
VNC SCRIPT 1/2: vncauto.bat
Batch | 5 hours ago | 0.72 KB
videoscheomedia
XML | 8 hours ago | 1.00 KB
Untitled
12 hours ago | 14.91 KB
autconnectVNC.bat
Batch | 12 hours ago | 0.93 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!