Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
a guest
Jan 18th, 2018
158
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C
0.27 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include<stdio.h>
int
main
(
)
{
int
n
,
s
,
c
;
while
(
scanf
(
"%d"
,&
n
)
!=
EOF
)
{
c
=
n
,
s
=
0
;
for
(
;;
)
{
if
(
n
<
3
)
break
;
s
+=
n
%
3
;
n
=
n
/
3
;
c
+=
n
;
}
printf
(
"%d
\n
"
,
s
+
c
)
;
}
return
0
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
25 min ago | 6.33 KB
sq
27 min ago | 27.45 KB
Untitled
1 hour ago | 17.28 KB
Untitled
2 hours ago | 8.23 KB
Untitled
3 hours ago | 23.25 KB
Untitled
4 hours ago | 10.51 KB
Untitled
5 hours ago | 30.70 KB
Untitled
6 hours ago | 8.23 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!