Giúp mình với mn ơi Cảm ơn trước
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.
Bạn sai cta nhé, sắp not xắp
Tham khảo
1. A special kind of tea is sold here
2. All the cars and trucks have been searched
3. He was put in prison by the goverment last years
4. We will be met by her parents at the station tomorrow
5. A meeting is being held by Mr. Brown in the hall
Bài 2
1 Tea can't be made with cold water
2 Some of my books have been taken away.
3 Some pictures were taken away by the boys.
4 This room may be used for the classroom.
5 This machine mustn't be used after 5:30 p.m
6 Mr Cole used to be visited at weekends by John.
7 All the homework ought to be done by her
Độ dãn của lò xo:
\(F_{đh}=k\cdot\Delta l\Rightarrow\Delta l=\dfrac{F_{đh}}{k}=\dfrac{2}{100}=0,02\)m=2cm
1 Yesterday was cooler than today
2 Salim is the most beautiful in her team
3 His house is the highest in my city
4 No one in her class is as intelligent as Lan
5 BJ is one of the greatest tennis players in the world
1. Yesterday was colder than today.
2. Salim is the most beautiful in her team.
3. His house is the highest house in my city.
4.No one in her class is more intelligent than Lan
8. BJ isthe greatest tennis player in the world.
Em ơi bạn ấy có ghi ở cap là cần giúp bài 3 thôi mà.
uses crt;
const fi='dlra.txt';
var a:array[1..100]of integer;
i,n,h:integer;
f1:text;
begin
clrscr;
write('Nhap n='); readln(n);
for i:=1 to n do
begin
write('A[',i,']='); readln(a[i]);
end;
assign(f1,fi); rewrite(f1);
h:=0;
for i:=1 to n do
if a[i] mod 2=0 then
begin
write(f1,a[i]:4);
h:=h+a[i];
end;
writeln(f1);
writeln(f1,h);
close(f1);
readln;
end.