Phía sau một cô gái
Giới thiệu về bản thân
\(\dfrac{26940}{7}\)
\(\left(x+1\right)+\left(x+2\right)+\left(x+3\right)+...+\left(x+50\right)=7500\)
\(50x+\left(1+2+3+...+50\right)=7500\)
\(50x+1275=7500\)
\(50x=6225\)
\(x=124,5\)
Complete the following dialogue with the appropriate questions from the list .There is one extra.
Jenny : Hi Kelvin ! I met your mom in the City Library yesterday.
Kelvin : Hello Jenny ! My mom works there .
Jenny : (1) f. What's her job ?
Jenny : Interesting ! (2) b. What else does she do ?
Kelvin : She sorts out new books , labels them and lends them to lends them to readers.
Jenny : Oh . I saw her working on a computer .(3) c. How does she travel to work ?
Kelvin : Ah , she keeps records of the books and readers.
Jenny : (4) d. How many hours a day does she work ?
Kelvin : She works from 8 to 10 hours a day .
Jenny : (5) a.Does she enjoy her job ?
Kelvin : Yes , she likes it very much
Jenny : I hope to talk to her about the library
Minh isn't going to Hoi An next week.
Rewrite each sentence using the suggested word. Don't change the meaning of the previous one.
1. The vistor spoke too quickly that I couldn't understand what he said.
→ The vistor spoke too quickly for me to understand what he said
2. Trung didn't go to school last Sunday.
→ Trung was not at school last Sunday
3. He won't lose weight if he doesn't stop eating much
→ Unless he stops eating so much, he won't lose weight
→ She had a good sleep last night
5.Please don't give me an injection.
→ I d' rather not have an injection, please
1. My neighbour is a sculptor. He makes (make) amazing sulptures.
2.At the moment, I am standing (stand) in front of the Tate Art Gallery in London.
3.Every year, thousands of people visit (visit) the Cairo Museum.
4. The sculptor sometimes uses (use) old household items for his work.
5. The photographer Marat Dupri often goes (go) to dangerous places to take photographer.
7. What materials a painter often use (use)?
8. Who is the man smiling (smile) in Munch's famous painting The Scream?
Task 1. Provide the correct form of the verbs in brackets.
1. If you get (get) back late, your mother will be (be) angry.
2. I will be (be) surprised if he comes (come) to the party this evening.
3. If we go (go) on holiday this summer, we will go (go) to Spain.
4. If the weather doesn't improve (not improve), we will not have (not have) a picnic.
5. If you don't want (not want) to go out, I will cook (cook) dinner at home.
6. He will be (be) tired tomorrow if he doesn't go (not go) to bed early.
7. Max will be (be) late for the meeting if he doesn't hurry (not hurry).
8. If you wear (wear) sandals in the mountains, you will slip (slip) on the rocks.
program tinh_tong_chia_het_cho_6;
uses crt;
var
n, i, tong: integer;
begin
write('Nhap so N: ');
readln(n);
tong := 0;
for i := 1 to n do
begin
if i mod 6 = 0 then
begin
tong := tong + i;
end;
end;
writeln('Tong cac so chia het cho 6 la: ', tong);
readln;
end.
n = int(input("Nhap so phan tu cua day: "))
a = [ ]
for i in range(n):
a.append(int(input("Nhap phan tu thu " + str(i+1) + ": ")))
max_value = a[0]
max_index = 0
for i in range(1, n):
if a[i] > max_value:
max_value = a[i]
max_index = i
print("Gia tri lon nhat trong day la:", max_value, "tai vi tri", max_index+1)
program tach_ho_ten;
uses crt;
var
s, ho_dem, ten: string;
i, vt: integer;
begin
write('Nhap xau s: ');
readln(s);
vt := 0;
for i := length(s) downto 1 do
begin
if s[i] = ' ' then
begin
vt := i;
break;
end;
end;
ho_dem := copy(s, 1, vt-1);
ten := copy(s, vt+1, length(s)-vt);
writeln('Ho dem: ', ho_dem);
writeln('Ten : ', ten);
readln;
end.