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;
}
D. 11.75 + 3.299 + 5.31 + 6.27
Step-by-step explanation:
11.75 would round up to 12, 3.299 would round down to 3, 5.31 would round down to 5 and 6.27 would round down to 6
Answer:
Mechanical/physical weathering - physical disintegration of a rock into smaller fragments, each with the same properties as the original. Occurs mainly by temperature and pressure changes
Chemical weathering - process by which the internal structure of a mineral is altered by the addition or removal of elements.
Step-by-step explanation:
I REALLY NEED BRAINIEST THX