Click here to Skip to main content
15,914,221 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ComboBox in Toolbar Pin
Ryan Binns21-Jul-03 4:13
Ryan Binns21-Jul-03 4:13 
Generalfastest file writing Pin
Jeremy Pullicino21-Jul-03 3:59
Jeremy Pullicino21-Jul-03 3:59 
GeneralRe: fastest file writing Pin
Ryan Binns21-Jul-03 5:43
Ryan Binns21-Jul-03 5:43 
GeneralRe: fastest file writing Pin
John M. Drescher21-Jul-03 6:06
John M. Drescher21-Jul-03 6:06 
GeneralVisual C++ (Updating versions) Pin
ttran770021-Jul-03 2:53
ttran770021-Jul-03 2:53 
GeneralWizard sheet Banner Pin
Member 42425921-Jul-03 2:40
Member 42425921-Jul-03 2:40 
QuestionLarge Exponents? Pin
Selevercin21-Jul-03 2:39
Selevercin21-Jul-03 2:39 
AnswerRe: Large Exponents? Pin
G. Steudtel21-Jul-03 4:42
G. Steudtel21-Jul-03 4:42 
hi,
the fastet way would be the logarhithmic one. But I fear that during the conversion processes some significant digits might get lost. But I will be good for estimates.
The next approach will be, by using the fact, that the power is cumulative.
e.g.
3 raised to the power of 8 = 3 raised 4 * 3 raised 4 = 3 raised 2*... an so on.
a= 3;
a= a*a (=9)
a= a*a (=81)
a= a*a (=6561)
a= a*a (=43046721)
a= a/3 (=14348907) = 3 raised to the power of 15
Maybe this is a solution for making very large numbers?

Regards

G. Steudtel
GeneralRe: Large Exponents? Pin
Selevercin21-Jul-03 16:08
Selevercin21-Jul-03 16:08 
GeneralExcel automation question Pin
Hadi Rezaee21-Jul-03 2:30
Hadi Rezaee21-Jul-03 2:30 
GeneralRe: Excel automation question Pin
Manfred Staiger21-Jul-03 3:05
Manfred Staiger21-Jul-03 3:05 
GeneralRe: Excel automation question Pin
Hadi Rezaee23-Jul-03 10:10
Hadi Rezaee23-Jul-03 10:10 
GeneralSpeech Recognition Pin
superstein21-Jul-03 2:30
superstein21-Jul-03 2:30 
GeneralRe: Speech Recognition Pin
Bob Stanneveld21-Jul-03 8:52
Bob Stanneveld21-Jul-03 8:52 
GeneralRe: Speech Recognition Pin
superstein22-Jul-03 4:41
superstein22-Jul-03 4:41 
Generalclose IE window!!! Pin
xxhimanshu21-Jul-03 1:47
xxhimanshu21-Jul-03 1:47 
GeneralRe: close IE window!!! Pin
Bob Stanneveld21-Jul-03 9:03
Bob Stanneveld21-Jul-03 9:03 
GeneralDuplicate Dialogs Pin
Jay Hova21-Jul-03 1:32
Jay Hova21-Jul-03 1:32 
GeneralRe: Duplicate Dialogs Pin
Ryan Binns21-Jul-03 1:48
Ryan Binns21-Jul-03 1:48 
GeneralRe: Duplicate Dialogs Pin
Jay Hova21-Jul-03 2:47
Jay Hova21-Jul-03 2:47 
GeneralRe: Duplicate Dialogs Pin
Ryan Binns21-Jul-03 2:55
Ryan Binns21-Jul-03 2:55 
GeneralRe: Duplicate Dialogs Pin
Jay Hova21-Jul-03 3:18
Jay Hova21-Jul-03 3:18 
GeneralRe: Duplicate Dialogs Pin
Ryan Binns21-Jul-03 3:26
Ryan Binns21-Jul-03 3:26 
GeneralRe: Duplicate Dialogs Pin
Jay Hova21-Jul-03 3:39
Jay Hova21-Jul-03 3:39 
GeneralRe: Duplicate Dialogs Pin
Ryan Binns21-Jul-03 3:40
Ryan Binns21-Jul-03 3:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.