“bagaimana melakukan pertukaran di python tanpa fungsi sortir” Kode Jawaban

bagaimana melakukan pertukaran di python tanpa fungsi sortir


# 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

bagaimana melakukan pertukaran di python tanpa fungsi sortir

# 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

Jawaban yang mirip dengan “bagaimana melakukan pertukaran di python tanpa fungsi sortir”

Pertanyaan yang mirip dengan “bagaimana melakukan pertukaran di python tanpa fungsi sortir”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya