Answer:
cvp B çünkü o iki kavram birbiriyle eşit
Answer:
0.90
Step-by-step explanation:
full price discounted total
month 1 49 1 50
month 2 120 5 125
month 3 101 24 125
total 270 30 300
full price discounted total
month 1 0.98 0.02 1
month 2 0.96 0.04 1
month 3 0.808 0.192 1
total x = 0.9 y = 0.10 1
x = 270 / 300 = 0.90
y = 30 / 300 = 0.10
Answer:
Are u CPPS
Step-by-step explanation:
justtttttttt askinggg
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;
}