Click here to Skip to main content
15,908,842 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionElliminate the e symbol from doubles Pin
Schehaider_Aymen23-Jun-10 23:43
Schehaider_Aymen23-Jun-10 23:43 
AnswerRe: Elliminate the e symbol from doubles Pin
CPallini23-Jun-10 23:46
mveCPallini23-Jun-10 23:46 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:03
Schehaider_Aymen24-Jun-10 0:03 
GeneralRe: Elliminate the e symbol from doubles Pin
CPallini24-Jun-10 0:07
mveCPallini24-Jun-10 0:07 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:14
Schehaider_Aymen24-Jun-10 0:14 
GeneralRe: Elliminate the e symbol from doubles Pin
CPallini24-Jun-10 0:25
mveCPallini24-Jun-10 0:25 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:27
Schehaider_Aymen24-Jun-10 0:27 
GeneralRe: Elliminate the e symbol from doubles Pin
CPallini24-Jun-10 0:53
mveCPallini24-Jun-10 0:53 
AnswerRe: Elliminate the e symbol from doubles Pin
Niklas L24-Jun-10 0:02
Niklas L24-Jun-10 0:02 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:06
Schehaider_Aymen24-Jun-10 0:06 
GeneralRe: Elliminate the e symbol from doubles Pin
Niklas L24-Jun-10 0:15
Niklas L24-Jun-10 0:15 
GeneralRe: Elliminate the e symbol from doubles Pin
Niklas L24-Jun-10 0:17
Niklas L24-Jun-10 0:17 
AnswerRe: Elliminate the e symbol from doubles Pin
Aescleal24-Jun-10 0:22
Aescleal24-Jun-10 0:22 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 0:25
Schehaider_Aymen24-Jun-10 0:25 
AnswerRe: Elliminate the e symbol from doubles Pin
norish24-Jun-10 1:07
norish24-Jun-10 1:07 
GeneralRe: Elliminate the e symbol from doubles Pin
Schehaider_Aymen24-Jun-10 2:11
Schehaider_Aymen24-Jun-10 2:11 
GeneralRe: Elliminate the e symbol from doubles Pin
Richard MacCutchan24-Jun-10 2:53
mveRichard MacCutchan24-Jun-10 2:53 
QuestionHow to do Modulo (double and Big Numbers) Pin
Schehaider_Aymen23-Jun-10 21:50
Schehaider_Aymen23-Jun-10 21:50 
AnswerRe: How to do Modulo (double and Big Numbers) Pin
Richard MacCutchan23-Jun-10 21:59
mveRichard MacCutchan23-Jun-10 21:59 
GeneralRe: How to do Modulo (double and Big Numbers) Pin
Schehaider_Aymen23-Jun-10 22:07
Schehaider_Aymen23-Jun-10 22:07 
AnswerRe: How to do Modulo (double and Big Numbers) Pin
CPallini23-Jun-10 22:01
mveCPallini23-Jun-10 22:01 
AnswerRe: How to do Modulo (double and Big Numbers) Pin
Peter_in_278023-Jun-10 22:02
professionalPeter_in_278023-Jun-10 22:02 
GeneralRe: How to do Modulo (double and Big Numbers) Pin
Schehaider_Aymen23-Jun-10 22:10
Schehaider_Aymen23-Jun-10 22:10 
GeneralRe: How to do Modulo (double and Big Numbers) Pin
Schehaider_Aymen23-Jun-10 22:37
Schehaider_Aymen23-Jun-10 22:37 
i 've got errors

error C2258: illegal pure syntax, must be '= 0'
error C2252: 'less' : pure specifier can only be specified for functions
error C2258: illegal pure syntax, must be '= 0'
error C2252: 'equal' : pure specifier can only be specified for functions
error C2258: illegal pure syntax, must be '= 0'
error C2252: 'greater' : pure specifier can only be specified for functions


Just here

class BigInteger {

public:
	typedef BigUnsigned::Blk Blk;
	typedef BigUnsigned::Index Index;
	typedef BigUnsigned::CmpRes CmpRes;
	static const CmpRes
		less    = BigUnsigned::less   ,
		equal   = BigUnsigned::equal  ,
		greater = BigUnsigned::greater;
	// Enumeration for the sign of a BigInteger.
	enum Sign { negative = -1, zero = 0, positive = 1 };

protected:
	Sign sign;
	BigUnsigned mag;


OMG | :OMG:
"The Ultimate Limit Is Only Your Imagination."

AnswerRe: How to do Modulo (double and Big Numbers) Pin
Niklas L23-Jun-10 23:33
Niklas L23-Jun-10 23:33 

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.