1.Từ các số 1;2;3;4;5;6;7;8;9 ta lập được bao nhiêu số tự nhiên có 5 chữ số đôi 1 khác nhau sao cho luôn có chữ số 1 và chữ số 9
2. Giải
a) căn3sin5x-sin10x=0
b) cos2x-căn3sin2x=2cos6x
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.
#include <bits/stdc++.h>
using namespace std;
int n,i;
int main()
{
cin>>n;
for (i=1; i<=n; i++)
if (i%2==0) cout<<i<<" ";
cout<<endl;
for (i=1; i<=n; i++)
if (i%2==1) cout<<i<<" ";
cout<<endl;
}
Câu 1:
uses crt;
var i,t:integer;
begin
clrscr;
t:=0;
for i:=1 to 20 do
if i mod 4=0 then t:=t+i;
writeln(t);
readln;
end.
Câu 2:
uses crt;
var i,dem:integer;
begin
clrscr;
dem:=0;
for i:=1 to 20 do
if i mod 3=0 then dem:=dem+1;
writeln(dem);
readln;
end.
Câu 1:
#include <bits/stdc++.h>
using namespace std;
int t,i;
int main()
{
t=0;
for (i=1; i<=20; i++)
if (i%4==0) t=t+i;
cout<<t;
return 0;
}
2:
#include <bits/stdc++.h>
using namespace std;
int i,dem;
int main()
{
dem=0;
for (i=1; i<=20; i++)
if ((i%2==1) and (i%3==0)) dem++;
cout<<dem;
return 0;
}
1.
Chọn 3 chữ số còn lại từ 7 chữ số còn lại: \(C_7^3=35\) cách
Hoán vị 5 chữ số: \(5!=120\)
Số số thỏa mãn: \(35.120=4200\) số
2.
a.
\(\sqrt{3}sin5x-2sin5x.cos5x=0\)
\(\Leftrightarrow sin5x\left(\sqrt{3}-2cos5x\right)=0\)
\(\Leftrightarrow\left[{}\begin{matrix}sin5x=0\\cos5x=\frac{\sqrt{3}}{2}\end{matrix}\right.\)
\(\Leftrightarrow\left[{}\begin{matrix}x=\frac{k\pi}{5}\\x=\pm\frac{\pi}{30}+\frac{k2\pi}{5}\end{matrix}\right.\)
b.
\(\Leftrightarrow\frac{1}{2}cos2x-\frac{\sqrt{3}}{2}sin2x=cos6x\)
\(\Leftrightarrow cos\left(2x-\frac{\pi}{3}\right)=cos6x\)
\(\Leftrightarrow\left[{}\begin{matrix}6x=2x-\frac{\pi}{3}+k2\pi\\6x=\frac{\pi}{3}-2x+k2\pi\end{matrix}\right.\)
\(\Leftrightarrow\left[{}\begin{matrix}x=-\frac{\pi}{12}+\frac{k\pi}{2}\\x=\frac{\pi}{24}+\frac{k\pi}{4}\end{matrix}\right.\)