Edit: Mit Integern geht es...
Hi also ich bin jetzt soweit, dass ich folgenden Code habe:
Code:
float zahl1;
float zahl2;
float ergebnis;
zahl1 = atof(m_strfirst);
zahl2 = atof(m_strsecond);
if (m_stroperator == "+")
ergebnis = zahl1+zahl2;
if (m_stroperator == "-")
ergebnis = zahl1-zahl2;
if (m_stroperator == "*")
ergebnis = zahl1*zahl2;
if (m_stroperator == "/")
ergebnis = zahl1/zahl2;
m_strresult.Format("%d",ergebnis);
UpdateData(FALSE);
Leider gibt mir das Programm immer als Ergebnis 0 aus, egal was ich tue
Kann mir da jemand helfen?
Das macht mich grad total fertig, da ich das in Delphi in 10 Sekunden tippen könnte