MFC calculator with huge real....
-
i need code of window base calculator which can do operations upto 32 digits which is possible by huge integers or real...can anyone help?????
We will be glad to help. Tell us what you have done so far, and we will try to answer questions you have.
Best wishes, Hans
-
We will be glad to help. Tell us what you have done so far, and we will try to answer questions you have.
Best wishes, Hans
...that may be too much work for him... :laugh:
-
i need code of window base calculator which can do operations upto 32 digits which is possible by huge integers or real...can anyone help?????
Send a letter to the Microsoft, asking for the source code of their calculator application. :rolleyes:
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
We will be glad to help. Tell us what you have done so far, and we will try to answer questions you have.
Best wishes, Hans
i have done it with huge integers so far but there is a problem that when i operate anyt function like adding or multiplying there become a dot after my answer and when i try to write again a new value that become written after that dot and previous answer stays on screen. what should i do???
-
Send a letter to the Microsoft, asking for the source code of their calculator application. :rolleyes:
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles]i have done it with huge integers so far but there is a problem that when i operate anyt function like adding or multiplying there become a dot after my answer and when i try to write again a new value that become written after that dot and previous answer stays on screen. what should i do???
-
i have done it with huge integers so far but there is a problem that when i operate anyt function like adding or multiplying there become a dot after my answer and when i try to write again a new value that become written after that dot and previous answer stays on screen. what should i do???
Without snippet of code, this will be very difficult to answer (and please don't post the full code, only relevant snippets). Did you try to use your debugger ?
Cédric Moonen Software developer
Charting control [v3.0] OpenGL game tutorial in C++ -
i need code of window base calculator which can do operations upto 32 digits which is possible by huge integers or real...can anyone help?????
You need to be a bit clearer on what you want. "32 digits" implies decimal digits but I suspect you may bew talking about 32-bit numbers (ie 32 binary digits) or perhaps 32 hex digits. Also do you just want to calculate using these large numbers or do you want code for a calculator type program with buttons etc. My best guess is that you just want to do calculations on big integers up to 32 hex digits (128-bits). These sorts of numbers are use in things like encryption. I have used the code in this article with success: C++ Integer Class[^].
Andrew Phillips http://www.hexedit.com andrew @ hexedit.com