Viết chương trình nhập các số nguyên x và y, rồi in ra x,y. Sao đó hoán đổi các giá trị x và y rồi in ra màn hình
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
Var x,y: integer;
Begin
Writeln('nhap 2 so nguyen x va y: '); Readln(x,y);
x:=x+y;
y:=x-x;
x:=y;
Writeln('so x sau hoan doi= ',x);
Writeln('so y sau hoan doi= ',y);
end.
#include <bits/stdc++.h>
using namespace std;
int x,y;
int main()
{
cout<<"Nhap so x: ";
cin>>x;
cout<<"Nhap so y: ";
cin>>y;
cout<<"So x la: "<<x;
cout<<"\nSo y la: "<<y;
Return 0;
}
#include <bits/stdc++.h>
using namespace std;
long long x,y;
int main()
{
cin>>x>>y;
swap(x,y);
cout<<x<<" "<<y;
return 0;
}
#include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
int temp = x;
x = y;
y = temp;
cout << "x=" << x << endl;
cout << "y=" << y << endl;
return 0;
}
Câu 2:
Program nii;
Uses crt;
Var a,b,c,A:integer;
Begin
Write ('nhap a');
Readln (a);
Write ('nhap b');
Readln (b);
Write ('nhap c');
Readln (c);
A:=a;
If A<b then A:=b;
If A<c then A:=c;
Write ('Ket qua',A);
Readln;
End.
Câu 1
Program ntg;
Uses crt;
Var A,x,y:integer;
Begin
Write ('nhap x');
Readln (x);
Write ('nhap y');
Readln ('y');
A:=x+y;
Write ('Ket qua',A);
Readln;
End.
#include <bits/stdc++.h>
using namespace std;
int x,y;
int main()
{
cin>>x>>y;
cout<<"Gia tri cua x la: "<<x;
cout<<"\nGia tri cua y la: "<<y;
Return 0;
}
uses crt;
var x,y:integer;
begin
readln(x,y);
writeln(x,' ',y);
wrieln(y,' ',x);
readln;
end.
cái đề của bạn nó rất là khặp khiển đấy