Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
a guest
Nov 19th, 2019
125
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
text
0.25 KB
| None
|
0
0
raw
download
clone
embed
print
report
void inserare(int &n)
{
int a[20],i=0,c,j;
while(n)
{
++i;
a[i]=n%10;
n/=10;
}
for(j=i;j>=2;--j)
{
n=n*10+a[j];
c=abs(a[j]-a[j-1]);
n=n*10+c;
}
n=n*10+a[1];
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
Bash | 4 hours ago | 1.06 KB
Ejemplo 2
HTML | 5 hours ago | 0.35 KB
Ejemplo 1
HTML 5 | 5 hours ago | 0.27 KB
Untitled
14 hours ago | 15.56 KB
kioskEnv
15 hours ago | 0.38 KB
Untitled
20 hours ago | 32.77 KB
Untitled
1 day ago | 0.55 KB
Untitled
1 day ago | 95.83 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!