
Phạm Khiêm
Sắt đoàn
85
17
Câu trả lời của bạn: 20:12 15/02/2023
1.Tea can't be made with cold water
2.Some of my books have been taken away.
3.The meeting will be held before May Day.
4.The engine of the car has to be repaired.
5.The windows were broken and some pictures were taken away by the boys.
6.A lot of money is spent on advertising every day.
7.A story is going to be told by the teacher.
8.The cake is being cut with a sharp knife by Mary.
9.The woman with a red hat was looked at by the children
10.The victims have been provided with food and clothing
11.English is spoken all over the world
12.This machine mustn't be used after 5:30p.m.
13.After class, the chalkboard is always erased by one of the students
Câu trả lời của bạn: 19:51 15/02/2023
var a:array[1..1000] of integer;
i,n,t1,t2,t3,dem1,dem2:integer;
begin
clrscr;
write('nhap n: '); readln(n);
for i:=1 to n do
begin
write('A[',i,']: '); readln(a[i]);
end;
t1:=0; t2:=0; t3:=0;
dem1:=0; dem2:=0;
for i:=1 to n do
begin
t1:=t1+a[i];
if a[i] mod 2=0 then
begin
t2:=t2+a[i];
dem1:=dem1+1;
end;
if a[i] mod 2 <>0 then
begin
t3:=t3+a[i];
dem2:=dem2+1;
end;
end;
writeln('tong day a: ',t1);
writeln('tong so chan: ',t2);
writeln('tong so le: ',t3);
writeln('co ',dem1,' so chan');
writeln('co ',dem2,' so le');
readln;
end.
Câu trả lời của bạn: 08:26 11/02/2023
C = π.2.R= 3,14.2.12=3,14
Câu trả lời của bạn: 22:12 10/02/2023
Công của lực đó khi hòm thùng hàng trượt đi được 2m là:
A=F.s.cosa=200.2.cos30°=346.41 (J)
Câu trả lời của bạn: 22:07 10/02/2023
Thế kỉ XX
Câu trả lời của bạn: 21:50 09/02/2023
var s:string[30];
ch,x:char;
i:byte;
dem:array['A'..'Z']of byte;
BEGIN
clrscr;
write('Nhap vao xau s=');
readln(s);
for ch:='A' to 'Z' do dem[ch]:=0;
for i:=1 to length(s) do
begin
x:=upcase(s[i]);
if (x>='A') and (x<='Z')
then
dem[x]:=dem[x]+1;
end;
for ch:='A' to 'Z' do
if dem[ch]<>0 then
writeln('So luong ki tu ',ch,'la: ',dem[ch]);
readln;
END.
Câu trả lời của bạn: 21:45 09/02/2023
var s:string;
i,n:integer;
begin
write('Nhap xau: '); readln(s);
while s[1]=' ' do delete(s,1,1);
while s[length(s)]=' ' do delete(s,length(s),1);
repeat
n:=pos(' ',s);
delete(s,n,1);
until n=0;
write('ket qua: ',s);
readln;
end.
Câu trả lời của bạn: 21:30 09/02/2023
a) Hàm số xác định <=> 1-x ≠0 <=> x ≠1
Tập xác định D = R \ {1}
b) Hàm số xác định <=> x2+4x-5≠0 <=> {x≠1x≠-5
c) giải giống câu b)
d) Hàm số xác định <=> 2x-2≥0 <=> 2x ≥2 <=> x≥1
e) Hàm số xác định <=> 6-2x≥0 <=> -2x≥-6<=>x≥3