Thomas Kuse
Erfahrenes Mitglied
PHP:
void setFloats(coords& cTemp, float temp1, float temp2){
cTemp.valueX=temp1;
cTemp.valueY=temp2;
}
int main(){
coords point;
float fZahl1,fZahl2;
cout <<"Zahl 1:";//Ausgabe
cin >>fZahl1;//Eingabe
cout <<"Zahl 2:";
cin >>fZahl2;
setFloats(point,fZahl1,fZahl2);
return 0;
}
Das ist ohne Zeiger, ohne new, aber dafür unübersichtlich und eigentlich nicht das wonach gefragt gewesen ist.