Những câu hỏi liên quan
H24
Xem chi tiết
NT
22 tháng 12 2020 lúc 13:18

uses crt;

var x,y:integer;

begin

clrscr;

write('Nhap x='); readln(x);

write('Nhap y='); readln(y);

if x>y then writeln(x-y)

else writeln(x+y);

readln;

end.

Bình luận (0)
H24
Xem chi tiết
NT
22 tháng 12 2020 lúc 13:18

uses crt;

var x,y:integer;

begin

clrscr;

write('Nhap x='); readln(x);

write('Nhap y='); readln(y);

if x>y then writeln(x-y)

else writeln(x+y);

readln;

end.

Bình luận (0)
H24
Xem chi tiết
NT
1 tháng 3 2022 lúc 22:58

uses crt;

var a,b:integer;

begin

clrscr;

readln(a,b);

if (a>b) then writeln(b,' ',a)

else writeln(a,' ',b);

readln;

end.

Bình luận (0)
CD
Xem chi tiết
NT
19 tháng 12 2021 lúc 23:07

if (b%2==0) cout<<"b la so chan";

if (b%2==1) cout<<"b la so le";

Bình luận (0)
CD
Xem chi tiết
NT
19 tháng 12 2021 lúc 23:08

if (b%2==0) cout<<"b la so chan";

if (b%2==1) cout<<"b la so le";

Bình luận (0)
CD
Xem chi tiết
NT
17 tháng 12 2021 lúc 14:40

if (b%2==0) cout<<"b la so chan";

else cout<<"b la so le";

Bình luận (0)
LS
Xem chi tiết
NT
Xem chi tiết
NT
4 tháng 1 2023 lúc 14:56

uses crt;

var a,b:integer;

begin

clrscr;

readln(a,b);

if (a>0) and (b>0) then writeln(a*b)

else writeln('Nhap lai');

readln;

end.

Bình luận (0)
YT
Xem chi tiết
NT
30 tháng 12 2021 lúc 15:11

#include <bits/stdc++.h>

using namespace std;

double x;

int main()

{

cin>>x;

if (x>0) cout<<"X la so duong";

else cout<<"X la so am";

return 0;

}

Bình luận (0)