Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
GeeckoDev
Aug 30th, 2011
130
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C
0.15 KB
| None
|
0
0
raw
download
clone
embed
print
report
int
nbDiviseurs
(
int
n
)
{
int
n_div
=
2
;
for
(
i
=
2
;
i
*
i
<=
n
;
i
++
)
{
if
(
n
%
i
==
0
)
n_div
+=
1
+
i
!=
n
/
i
;
}
return
n_div
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
35 min ago | 8.98 KB
Untitled
1 hour ago | 27.42 KB
Untitled
2 hours ago | 15.07 KB
Untitled
3 hours ago | 26.38 KB
Untitled
4 hours ago | 8.44 KB
Untitled
5 hours ago | 28.24 KB
Untitled
6 hours ago | 12.17 KB
musly stack trace
7 hours ago | 11.98 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!