“Comment faire des échanges dans Python sans fonction de tri” Réponses codées

Comment faire des échanges dans Python sans fonction de tri


# Python3 code to swap using XOR
 
x = 10
y = 5
 
# Code to swap 'x' and 'y'
x = x ^ y; # x now becomes 15 (1111)
y = x ^ y; # y becomes 10 (1010)
x = x ^ y; # x becomes 5 (0101)
 
print ("After Swapping: x = ", x, " y =", y)
android developer

Comment faire des échanges dans Python sans fonction de tri

# Python3 program to
# swap two numbers
# without using
# temporary variable
x = 10
y = 5
 
# code to swap
# 'x' and 'y'
 
# x now becomes 50
x = x * y
 
# y becomes 10
y = x // y;
 
# x becomes 5
x = x // y;
 
print("After Swapping: x =",
              x, " y =", y);
android developer

Réponses similaires à “Comment faire des échanges dans Python sans fonction de tri”

Questions similaires à “Comment faire des échanges dans Python sans fonction de tri”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code