Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
[t004] divide
AquaBlitz11
Oct 9th, 2018
405
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
C++
0.24 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include<stdio.h>
double
func
(
int
n
)
{
if
(
n
==
0
)
return
1
;
else
{
return
func
(
n
-
1
)
+
(
1
/
func
(
n
-
1
)
)
;
}
}
int
main
(
)
{
int
n
;
scanf
(
"%d"
,
&
n
)
;
func
(
n
)
;
printf
(
"%lf"
,func
(
n
)
)
;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
π΅π΅ DAILY MONETIZING STRATEGY
JavaScript | 1 min ago | 0.26 KB
β‘ BTC TRICK 2025 π | EASIEST CASHOUT π₯ ππ΅
JavaScript | 2 min ago | 0.17 KB
πΈπΈ Swapzone Glitch
JavaScript | 3 min ago | 0.25 KB
π INSTANT PAYOUT METHOD π΅ | $2,500 IN 20 MIN...
JavaScript | 5 min ago | 0.17 KB
πΈπΈ ChangeNOW Money Glitch
JavaScript | 8 min ago | 0.26 KB
π 2OOO$ 15 MIN INSANE METHOD ββ
JavaScript | 8 min ago | 0.17 KB
πΈπΈ HUGE MONEY BY TRUMP πΈπΈ
JavaScript | 10 min ago | 0.26 KB
π NEW INSTANT BTC METHODπ πβ
JavaScript | 11 min ago | 0.17 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!