- #1
FallArk
- 127
- 0
When I do things like
in C++, it will typically output 0.333333, but the actual answer should be 0.3333333 with an infinite amount of 3s, how should I make a function such that will mimic this division recursively?
Code:
cout << 1/3;