Cho bài toán sau: có 3 biến x,y,x lưu trữ các số nguyên. Hãy hoán vị vòng quanh giá trị của 3 biến đó bà in kết quả hoán vị lên màn hình . Ví dụ nhập x=2 ,y=5 ,z= 7 In ra x= 5, y=7 ,z=2
2 câu trả lời
x = int(input("nhập số x"))
y = int(input("Nhập số y"))
z = int(input("nhập số z"))
print("x ="+str(x))
print("y ="+str(y))
print("z ="+str(z))
x = x+y+z
z = x-y-z
y = x-y-z
x = x-y-z
print("---")
print("x ="+str(x))
print("y ="+str(y))
print("z ="+str(z))
bonus cho bạn kết quả chạy code
uses crt;
var x, y, z : integer;
begin
clrscr;
write('x = ');readln(x);
write('y = ');readln(y);
write('z = ');readln(z);
x := x + y + z;
z := x - y - z;
y := x - y - z;
x := x - y - z;
writeln('x = ', x);
writeln('y = ', y);
writeln('z = ', z);
readln
end.