Answer:
bro it is a question what is this
Explanation:
please follow me
Answer:
umm, we can't say any links
Explanation:
Answer:
The answer is "Option A"
Explanation:
Escalation is the process of manipulating a bug, design failure in software program to obtain elevated access to the resources, which are usually shielded from the user, and wrong choices can be described as follows:
- In option B, It is wrong because It can't provide any type of problem-solving.
- In option C, It is wrong because it is a searching module.
- In option D, It is wrong because it is used to verify the system.
Answer:
#include<iostream>
using namespace std;
int lcm(int m, int n) {
int a;
a = (m > n) ? m: n;
while (true) {
if (a % m == 0 && a % n == 0)
return a;
++a;
}
}
int gcd(int m, int n) {
int r = 0, a, b;
a = (m > n) ? m : n;
b = (m < n) ? m : n;
r = b;
while (a % b != 0) {
r = a % b;
a = b;
b = r;
}
return r;
}
int main(int argc, char **argv) {
cout << "Enter the two numbers: ";
int m, n;
cin >> m >> n;
cout << "The LCM of two numbers is: " << lcm(m, n) << endl;
cout << "The GCD of two numbers is: " << gcd(m, n) << endl;
return 0;
}
Explanation:
The central processing unit (CPU<span>) </span>works in conjunction<span> with </span><span>______ to perform processing</span>