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:
y=2x+3
Step-by-step explanation:
in third line x = 0 y=2×0+3 =3
Which one do you want to he answered?
Step-by-step explanation:
We have cartisean points. We are trying to find polar points.
We can find r by applying the pythagorean theorem to the x value and y values.

And to find theta, notice how a right triangle is created if we draw the base(the x value) and the height(y value). We also just found our r( hypotenuse) so ignore that. We know the opposite side and the adjacent side originally. so we can use the tangent function.

Remeber since we are trying to find the angle measure, use inverse tan function

Answers For 2,5

So r=sqr root of 29

So the answer is (sqr root of 29,68).
For -3,3


Use the identity

So that means

So our points are
(3 times sqr root of 2, 135)
For 5,-3.5


So our points are (sqr root of 37.25, 35)
For (0,-5.4)

So r=5.4

So our points are (5.4, undefined)