tìm x:\(-2,5+\left|3x+5\right|=-1,5\)
giúp mik vs ạ mik đang cần gấp mai cô bắt phải nộp rồi
Tìm x
\(11-\left(3x-1\right)=\frac{9}{2}-\left(5-3,5x\right)\)
Mọi người giúp mình nha . Cho mình cảm ơn trước . Bài này ngày mai mik phải nộp rồi giúp mik vs nha
\(11-\left(3x-1\right)=\frac{9}{2}-\left(5-3,5x\right)\)
\(=>11-3x+1=\frac{9}{2}-5+3,5x\)
\(=>-3x+12=3,5x-\frac{1}{2}\)
\(=>-3x-3,5x=-\frac{1}{2}-12\)
\(=>-6,5x=-12,5\)
\(=>x=\frac{-12,5}{-6,5}=\frac{25}{13}\)
Ủng hộ nha
\(11-\left(3x-1\right)=\frac{9}{2}-\left(5-3,5x\right)\)
\(11-3x+1=\frac{9}{2}-5+3,5x\)
\(12-3x=-\left(0,5\right)+3,5x\)
\(12,5-3x=3,5x\)
\(12,5=6,5x\)
\(x=12,5:6,5=\frac{25}{13}\)
CÁC BẠN ƠI GIÚP MIK VIẾT MỘT ĐOẠNVĂN KHOẢNG TỪ 6 CÂU,VIẾT VỀ 2 CHƯƠNG TRÌNH ĐÃ HỌC (LET'S LEARN/HELLO FATTY).MIK ĐANG CẦN GẤP LẮM MAI MIK PHẢI NỘP CÔ RỒI
Đã học hay "yêu thích" hả bạn?
1. Tìm x thuộc Z biết:
a,\(\frac{-5}{6}.\frac{120}{25}< x< \frac{-7}{15}.\frac{9}{14}\)
b,\(\left(\frac{-5}{3}\right)^3< x< \frac{-24}{35}.\frac{-5}{6}\)
2. Thực hiện phép tính:
a,\(\left(\frac{9}{10}-\frac{15}{16}\right).\left(\frac{5}{12}-\frac{11}{15}-\frac{7}{20}\right)\)
b,\(\frac{-3}{5}+\frac{28}{5}.\left(\frac{43}{56}+\frac{5}{24}-\frac{21}{63}\right)\)
AI GIÚP MIK VỚI,MIK DÂNG CẦN GẤP,SÁNG MAI MIK PHẢI NỘP CHO CÔ RỒI,GIÚP MIK NHA
1)
a)
\(\frac{-5}{6}.\frac{120}{25}< x< \frac{-7}{15}.\frac{9}{14}\)
\(\frac{-1}{1}.\frac{20}{5}< x< \frac{-1}{5}.\frac{3}{2}\)
\(\frac{-20}{5}< x< \frac{-3}{10}\)
\(\frac{-40}{10}< x< \frac{-3}{10}\)
\(\Rightarrow Z\in\left\{-4;-5;-6;-7;-8;-9;-10;...;-39\right\}\)
\(\left(\frac{-5}{3}\right)^3< x< \frac{-24}{35}.\frac{-5}{6}\)
\(\frac{25}{3}< x< \frac{-4}{7}.\frac{1}{1}\)
\(\frac{-25}{3}< x< \frac{-4}{7}\)
\(\frac{-175}{21}< x< \frac{-12}{21}\)
\(\Rightarrow Z\in\left\{-13;-14;-15;-16;...;-174\right\}\)
2)
a)
\(\left(\frac{9}{10}-\frac{15}{16}\right).\left(\frac{5}{12}-\frac{11}{15}-\frac{7}{20}\right)\)
\(=\left(\frac{72}{80}-\frac{75}{80}\right).\left(\frac{25}{60}-\frac{44}{60}-\frac{21}{60}\right)\)
\(=\frac{-3}{80}.\frac{-40}{60}\)
\(=\frac{-1}{-2}.\frac{-1}{-20}\)
\(=\frac{1}{40}\)
Mik đang cần gấp bài này mọi người giúp mik với ạ. Tối nay mik phải nộp rồi.
uses crt;
var st:string;
d,i,t,x,y,a,b:integer;
begin
clrscr;
readln(st);
d:=length(st);
for i:=1 to d do write(st[i]:4);
writeln;
t:=0;
for i:=1 to d do
begin
val(st[i],x,y);
t:=t+x;
end;
writeln(t);
val(st[d],a,b);
if (a mod 2=0) then write(1)
else write(-1);
readln;
end.
Mik đang cần gấp bài này mọi người giúp mik với ạ. Tối nay mik phải nộp rồi.
#include <bits/stdc++.h>
using namespace std;
long long a[1000],i,n,t,dem,t1;
int main()
{
cin>>n;
for (i=1; i<=n; i++) cin>>a[i];
t=0;
for (i=1; i<=n; i++) if (a[i]%2==0) t+=a[i];
cout<<t<<endl;
t1=0;
dem1=0;
for (i=1; i<=n; i++)
if (a[i]<0)
{
cout<<a[i]<<" ";
t1+=a[i];
dem1++;
}
cout<<endl;
cout<<fixed<<setprecision(1)<<(t1*1.0)/(dem1*1.0);
return 0;
}
Mik đang cần gấp bài này mọi người giúp mik với ạ. Tối nay mik phải nộp rồi.
#include <bits/stdc++.h>
using namespace std;
long long a,b;
//chuongtrinhcon
long long gcd(long long a,long long b)
{
if (b==0) return(a);
return gcd(b,a%b);
}
//chuongtrinhchinh
int main()
{
cin>>a>>b;
cout<<max(a,b)<<endl;
cout<<gcd(a,b)<<endl;
if ((a>0 && b>0) or (a<0 && b<0)) cout<<a/gcd(a,b)<<" "<<b/gcd(a,b);
else cout<<"-"<<-a/gcd(-a,b)<<" "<<b/gcd(-a,b);
return 0;
}
Mọi người ơi giúp mik với ,mik đg cần gấp lắm sáng mai mik phải nộp rồi mà vẫn chx làm xong ,mọi người giúp mik với ạ ! Xong mik sẽ tick mik cảm ơn nhiều (CHO MIK CÂU TRẢ LỜI CHI TIẾT, RÕ CÁC Ý NHẤT VỚI )
Đây là bài tìm x
Write about your favourite mythical beasts.
Giúp mik với,mik đang cần gấp lắm,mai mik phải nộp lấy điểm rồi
viết tầm 5 - 7 câu thôi.Bạn nào nhanh mik k đúng nhưng bạn đó hải viết đúng ngữ pháp và cũng ko cần quá hay,hay vừa thôi nhé
My favourite fictional character would be shinigami ryuk from the anime death note
Reason
Well he is a shinigami who gets bored by his monotonous job of taking souls of humans, so in order to have fun he decides to give his soul reaping powers to a human(light yagami). Through out the whole anime he always sk with the yagami as an ally( although he had made clear to him that he will be having his soul after latter dies) and helps him taking decisions.
Through out the anime, the viewer will never think of him as someone who is in control. He will always be thought of as a insignificant side kick. In the end, he is only one who has the ultimate power and viewer perspective towards him changes from a sidekick to a ringmaster. He takes the soul of yagami when the yagami does not stay true to his word and character.
Through out the series viewer will think that ryuk is an friend to the yagami. It's only in the end when the truth comes out that yagami was nothing more than a tool for ryuk to kill his boredom. Ryuk kills him the very moment he becomes inefficient and untrue to his character.
259 Views · View Upvoters
\(\dfrac{x+1}{2022}\)+\(\dfrac{x+2}{2021}\)+.....+\(\dfrac{x+23}{2000}\)+23=0
Mọi người giúp mik vs ạ,mai mik phải nộp rồi ạ!
Lời giải:
PT $\Leftrightarrow (\frac{x+1}{2022}+1)+(\frac{x+2}{2021}+1)+...+(\frac{x+23}{2000}+1)=0$
$\Leftrightarrow \frac{x+2023}{2022}+\frac{x+2023}{2021}+...+\frac{x+2023}{2000}=0$
$\Leftrightarrow (x+2023)(\frac{1}{2022}+\frac{1}{2021}+...+\frac{1}{2000})=0$
Dễ thấy tổng trong () luôn dương
$\Rightarrow x+2023=0$
$\Leftrightarrow x=-2023$