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.
Gọi tuổi cha là x và tuổi con là y.
Viết chương trình
Program vct;
Uses crt;
var
x,y,tam,namcachnhau:integer;
begin
clrscr;
writeln('moi nhap tuoi cha ');
readln(x);
writeln('moi nhap tuoi con ');
readln(y);
while ((x-y=25) and (x=2y)) do
begin
writeln('moi nhap lai tuoi cha');
readln(x);
writeln('moi nhap lai tuoi con');
readln(y);
end;
for i:=y+1 to 200 do
begin
inc(x);
if (x=2y) then
begin
tam:=i;
namcachnhau:=i-y;
break;
end;
end;
write(namcachnhau);
readln;
end.
program demtuoi;
uses crt;
var bo,con:integer;
begin
writeln ('nhap tuoi bo');readln (bo):
writeln ('nhap tuoi con');readln (con);
if bo=3*con then writeln ('tuoi cua bo hien nay gap 3 lan tuoi con') else
if 3*con<bo then writeln ('sau ',bo-3*con,' nam nua tuoi bo gap 3 lan tuoi con') else
if 3*con>bo then writeln ('truoc day ',3*con-bo,' nam thi bo gap 3 lan tuoi con');
readln
end.
Gọi tuổi Ngân hiện tại là x ( tuổi,x € N*)
Thì 10x là tuổi Minh hiện tại
24 năm sau tuổi Ngân là : x + 24
24 năm sau tuổi Minh là : 10x + 24
Ta có phương trình :
10x + 24 = 2( x + 24)
10x - 2x = 48 - 24
8x = 24
x = 3
Vậy tuổi Ngân hiện tại là 3 tuổi
Gọi tuổi hiện tại của Ngân là x(x\(\in\)N*)
=>Tuổi hiện tại của Minh là 10x
24 năm nữa tuổi Ngân là x+24
24năm nữa tuổi Minh là 10x+24
Nên phương trình là:
10x+24=2(x+24)
=>10x+24=2x+48
=>10x-2x=-24+48
=>8x=24
=>x=3
Vậy tuổi hiện tại của Ngân là 3
program tim_tuoi;
uses crt;
var i,j,ngaysinh,tuoi, uoctuoi,k:integer;
begin
clrscr;
for i:=1 to 9 do
for j:=0 to 9 do
for k:=0 to 9 do
begin
uoctuoi:=sqr(i)+sqr(j)+sqr(k);
tuoi:=i*100+j*10+k;for ngaysinh:=1 to 31 do
if tuoi =uoctuoi+ngaysinh then write('tuoi cua cu la: ',tuoi);
end;
readln;
end.
program tim_tuoi;
uses crt;
var i,j,ngaysinh,tuoi, uoctuoi,k:integer;
begin
clrscr;
for i:=1 to 9 do
for j:=0 to 9 do
for k:=0 to 9 do
begin
uoctuoi:=sqr(i)+sqr(j)+sqr(k);
tuoi:=i*100+j*10+k;for ngaysinh:=1 to 31 do
if tuoi =uoctuoi+ngaysinh then write('tuoi cua cu la: ',tuoi);
end;
readln;
end.
var lan,ha,mai:integer;
begin
write('Tuoi Lan la ');readln(lan);
write('Tuoi Ha la ');readln(ha);
write('Tuoi Mai la ');readln(mai);
write('Tong so tuoi cua ba ban la ',lan+ha+mai);
readln;
end.
#include <bits/stdc++.h>
using namespace std;
double x,tb;
int n,i;
int main()
{
cin>>n;
tb=0;
for (i=1; i<=n; i++)
{
cin>>x;
tb+=x;
}
cout<<fixed<<setprecision(2)<<tb/n;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
cin>>a>>b;
cout<<a-2*b;
return 0;
}