how to handle big float numbers without bugging?
basicly as it shows the big, it kinda bugs doing such conversion, the point is on wrong place and it was supposed to be 44 million and something the answer, my long double couldn't handle it, what to do?
7 Replies
the best would be to ask ina $cpp server, c# is a completely different language
We're partnered with Together C & C++, check them out here: https://discord.gg/vnyVmAE
also the point is at the correct position, thats just the scientific notation
4,49768e+07 == 4,49768 * power(10, 7) == 4,49768 * 10000000 == 44976800
oh sorry i posted on wrong server
u know how to have it without the power applied ?
i never touched, c++, just some c for an esp32, so dunno
np will delete then
ty
in the end u will have to look for some format method