Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Extent Euclid
istinishat
Nov 6th, 2016
263
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++ (with Qt extensions)
0.18 KB
| None
|
0
0
raw
download
clone
embed
print
report
int
gcd
(
int
a
,
int
b
,
int
&
x
,
int
&
y
)
{
if
(
a
==
0
)
{
x
=
0
;
y
=
1
;
return
b
;
}
int
x1
,
y1
;
int
d
=
gcd
(
b
%
a
,
a
,
x1
,
y1
)
;
x
=
y1
-
(
b
/
a
)
*
x1
;
y
=
x1
;
return
d
;
}
Add Comment
Please,
Sign In
to add comment
Public Pastes
⭐ [PAID METHOD] $9000 IN 20 DAYS⭐ OI
JavaScript | 1 sec ago | 0.31 KB
⭐ giftcards for free
JavaScript | 12 sec ago | 0.05 KB
⭐ [PAID METHOD] $9000 IN 20 DAYS⭐ 1Z
JavaScript | 17 sec ago | 0.31 KB
⭐ giftcards for free
JavaScript | 19 sec ago | 0.05 KB
⭐ [NOOB] Make $800-$2400 DAY⭐ M2
JavaScript | 20 sec ago | 0.31 KB
⭐ GET 5OO$ GIFT CARD KQ
JavaScript | 22 sec ago | 0.31 KB
⭐️ EASY to Make $800 in 10 Minutes GQ
JavaScript | 23 sec ago | 0.31 KB
How I Made $5,000 Over the Weekend – My Full...
JavaScript | 23 sec ago | 0.06 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!