Answer:
A P of Addition
Step-by-step explanation:
Answer: The required two number will be 247 and 248.
Step-by-step explanation:
Since we have given that
Number of people at the Cineplex on last Saturday=1486
Number of theaters are there=6
Number of people in each theatres is given by

So it must lie between 247 and 248.
As the number of people in each theatre is 247.66 so , it may be between 247 and 248.
So, the required two number will be 247 and 248.
Answer:
መልሱ 78 ይሆናል ግን የጎደለው መላምት ፍጥነት ነው
Step-by-step explanation:
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
Answer:
it is b
Step-by-step explanation: