#Nhập vào danh sách nhiệt độ cao nhất, thấp nhất trong 7 ngày. Đưa ra màn hình nhiệt độ trung bình của cả tuần đếm số ngày có nhiệt độ thấp hơn 10 độ.
- Xác định bài toán
-Nêu ý tưởng
- viết phương trình
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.
Cả hai ngày xuất được số kg cà phê là:
4578+(4578x2)=13734(kg)
Đáp số: 13734 kg cà phê
\(M=1+\dfrac{1}{5}+\dfrac{3}{35}+...+\dfrac{3}{9999}\\ =\dfrac{3}{3}+\dfrac{3}{15}+\dfrac{3}{35}+...+\dfrac{3}{9999}\\ =\dfrac{3}{2}\left(\dfrac{2}{1\cdot3}+\dfrac{2}{3\cdot5}+...+\dfrac{2}{99\cdot101}\right)\\ =\dfrac{3}{2}\left(1-\dfrac{1}{3}+\dfrac{1}{3}-\dfrac{1}{5}+\dfrac{1}{5}-\dfrac{1}{7}+...+\dfrac{1}{99}-\dfrac{1}{101}\right)\\ =\dfrac{3}{2}\left(1-\dfrac{1}{101}\right)=\dfrac{3}{2}\cdot\dfrac{100}{101}=\dfrac{150}{101}\)
\(\text{1 vạn = 10 000}\)
\(\text{5 phần vạn}\) = \(\dfrac{5}{10000}\) = \(\dfrac{1}{2000}\)
Gọi số hs của trường đó là A, ta có:
\(A⋮15\\ A⋮18\\ A⋮21\\ \Rightarrow A⋮BCNN\left(15;18;21\right)\\\Rightarrow A⋮630\\ \Rightarrow A\in\left\{630;1260;...\right\}\)
Mà \(600\le A\le700\Rightarrow A=630\)
Vậy...
số học sinh là số chia hết cho 15 ,18 ,21
số học sinh là bội chung 3 số 15 ,18 ,21
mà trong khoảng 600 => 700 chỉ có 630 thỏa mãn
Change these sentences into passive form:
1. We can' t wear jeans at work.
☛................. Jeans can't be worn at work...........
2. Do they speak English and French in Canada?
☛................... Are French and English spoken in Canada........
3. People don' t use this road every often.
☛.............. This road is not used very often..............
4. We will grow a lot of trees i the parks.
☛................ A lot of trees will be grown in the park...........
5. They are painting the living - room light blue.
☛............... The living room is being painted light blue. ...........
1.Jeans can't be worn at work (by us)
2.Are E and F spoken in CND?
3.This road isn't used every often
4.A lot of trees will be grown in the parks (by us)
5.The livingroom is being painted light blue
Good luck!
#include <bits/stdc++.h>
using namespace std;
double a[7],b[7],c[7],t;
int dem,i;
int main()
{
for (i=1; i<=7; i++) cin>>a[i]>>b[i];
for (i=1; i<=7; i++) c[i]=(a[i]+b[i])/2;
t=0;
dem=0;
for (i=1; i<=7; i++)
{
t+=c[i];
if (c[i]<10) dem++;
}
cout<<"Nhiet do trung binh la: "<<fixed<<setprecision(2)<<t/(7*1.0)<<endl;
cout<<"So ngay nhiet do trung binh nho hon 10 do la: "<<dem;
return 0;
}