Answer:
16, 104, 1000
Step-by-step explanation:
8*2
8*13
8*125
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;
}
2 adults = 5.50 x 2 = 11
3 students = 4.25 x 3 = 12.75
Total = $23.75
Answer:
C. y = 1/2x - 14
Step-by-step explanation:
Find the slope of the original line and use the point-slope formula y
−
y
1
=
m
(
x
−
x
1
) to find the line parallel to y
=
1
/2
x
−
8
.
y
=
1
/2
x
−
14 PARALLEL
...................................................................................................................................................
Find the negative reciprocal of the slope of the original line and use the point-slope formula y
−
y
1
=
m
(
x
−
x
1
) to find the line perpendicular to y
=
1
/2
x
−
8
.
y
=
−
2
x
−
29 PERPENDICULAR