Communiquez avec les autres et partagez vos connaissances professionnelles

Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.

Suivre

How I can swap between value variables using two variables only?

user-image
Question ajoutée par ehab ab'oushi , IT Manager , INGOT Brokers
Date de publication: 2013/06/25
Daanish Rumani
par Daanish Rumani , Product Manager , Publicis Sapient

Let a and b be the two variables.
// Swap a and b a = a + b; b = a - b; a = a - b; Example Assume a =12, b =7 a = a + b; // a =19, b =7 b = a - b; // a =19, b =12 a = a - b; // a =7, b =12 But you should use a third variable when swapping.
The above method fails when a and b are float or double.
Also it cannot swap values whose addition is more that the max supported value.
i.e.
a + b > Int.Max for int type.

Avez-vous besoin d'aide pour créer un CV ayant les mots-clés recherchés par les employeurs?