Einzelnen Beitrag anzeigen

Benutzerbild von toms
toms
(CodeLib-Manager)

Registriert seit: 10. Jun 2002
4.648 Beiträge
 
Delphi XE Professional
 
#3

Re: c(f^=g^=f^=g;) nach Delphi

  Alt 2. Mai 2004, 17:26
Geht doch:

Delphi-Quellcode:
  a:=a+b;
  b:=a-b;
  a:=a-b;
oder:

Delphi-Quellcode:
    a := a xor b;
    b := a xor b;
    a := a xor b;
Thomas
  Mit Zitat antworten Zitat