Sắp xếp giúp mình với
C/ọ/l/ồ/n
Help me
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.
3x . 2 + 15 = 33
3x . 2 = 33 - 15 = 18
3x = 18 : 2 = 9 = 32
=> x = 2
Có 2 cách giải:
\(xy+2x+3y+5=0\)
\(\Leftrightarrow x\left(y+2\right)=-3y-5\)
\(\Leftrightarrow x=\frac{-3y-5}{y+2}\)
\(\Leftrightarrow x=\frac{-3y-6}{y+2}+\frac{1}{y+2}\)
\(\Leftrightarrow x=-3+\frac{1}{y+2}\)
Để \(x\in Z\)
Mà \(-3\in Z\)
\(\Rightarrow\frac{1}{y+2}\in Z\)
\(\Rightarrow1⋮\left(y+2\right)\)
\(\Rightarrow\orbr{\begin{cases}y+2=-1\\y+2=1\end{cases}}\)\(\Leftrightarrow\orbr{\begin{cases}y=-3\\y=-1\end{cases}}\)
*Nếu y = -3 => x = - 4.
*Nếu y = -1 => x = -2.
c: Trường hợp 1: n=2k
\(\Leftrightarrow n\left(n+2017\right)=2k\left(2k+2017\right)⋮2\)
Trường hợp 2: n=2k+1
\(\Leftrightarrow n\left(n+2017\right)=\left(2k+1\right)\left(2k+2018\right)⋮2\)
it was very nice of you to give me a special present last christmas
Câu 1: Tính số fibonaci thứ N. biết f(1)= 1; f(2) = 1; f(N)=f(N-2)+F(N-1)
#include <iostream>
int fibonacci(int n) {
if (n <= 2) {
return 1;
}
int prev = 1;
int current = 1;
int fib;
for (int i = 3; i <= n; i++) {
fib = prev + current;
prev = current;
current = fib;
}
return fib;
}
int main() {
int N;
std::cin >> N;
int result = fibonacci(N);
std::cout << "Số Fibonacci thứ " << N << " là: " << result << std::endl;
return 0;
}
Câu 2: Cho dãy a gồm m số nguyên (|ai| <=10), dãy b gồm n số nguyên (bị <=10). 2 dãy này đã được sắp xếp không giảm. Hãy in ra một dãy c có các phần tử gồm 2 dãy số trên cũng được sắp xếp không giảm.
#include <iostream>
#include <vector>
std::vector<int> mergeArrays(const std::vector<int>& a, const std::vector<int>& b) {
std::vector<int> c;
int i = 0;
int j = 0;
while (i < a.size() && j < b.size()) {
if (a[i] <= b[j]) {
c.push_back(a[i]);
i++;
} else {
c.push_back(b[j]);
j++;
}
}
while (i < a.size()) {
c.push_back(a[i]);
i++;
}
while (j < b.size()) {
c.push_back(b[j]);
j++;
}
return c;
}
int main() {
int m, n;
std::cin >> m >> n;
std::vector<int> a(m);
std::vector<int> b(n);
for (int i = 0; i < m; i++) {
std::cin >> a[i];
}
for (int i = 0; i < n; i++) {
std::cin >> b[i];
}
std::vector<int> c = mergeArrays(a, b);
std::cout << "Dãy c sau khi sắp xếp không giảm là:" << std::endl;
for (int i = 0; i < c.size(); i++) {
std::cout << c[i] << " ";
}
std::cout << std::endl;
return 0;
}
đáp án là: Lọ cồn
động từ à hay danh từ