S
Wie währs denn so:
double *zahl1 = m_Ergebnis1;
double *zahl2 = m_Ergebnis2;
CString* Ergebnis;
int intzahl = 0;
zahl1 *= pow(10,Nachkommastelle);
intzahl = (int)zahl1;
zahl1 = (double)intzahl;
zahl1 *= pow(10,(-1 * Nachkommastelle));
Ergebnis->Format("%.Nachkommastellef,zahl1);
zahl2 *= pow(10,Nachkommastelle);
intzahl = (int)zahl2;
zahl2 = (double)intzahl;
zahl2 *= pow(10,(-1 * Nachkommastelle));
Ergebnis->Format("%.Nachkommastellef,zahl1);