Answer:
the answer is B.FALSE
Step-by-step explanation:
hope it helps
Answer:
yes it is because they are both going by two
Step-by-step explanation:
Answer:
EX. 210/6
Step 1. Set up the equation, 210/6
Step 2. Divide the first digit/number 6 x 30 = 180 210 - 180 = 30
Step 3. rewrite the equation that is left, 30/6 6 x 5 = 30 30 - 30 = 0
Step 4. Only if need be for another equation, repeat step 1 and 2 until you have your answer
The Answer to the equation 210/6 is 35
Try 426/6 by yourself, please don't use a calculator.
Answer:
1/8 is at the bank, 1/4 at the mall and 5/8 at the library
Step-by-step explanation:
// Input value is usernum.
// This code snippet sums 1 + 3 + 5 + ... + usernum
// The answer is stored in the variable summedvalue.
N = (int) (usernum+1)/2; // maximum number of integers to be summed
int *v = malloc(N*sizeof(int)); // allocate storage for array v
// Calculate the number of loop counts and assign array v..
count = 0;
k = 1;
while (1) {
if (k>usernum) { // do not extend v beyond usernum
break;
}
v(count) = k; // assign an odd integer to v, including usenum
count++;
k += 2; // k is an odd number
if k>usernum { // handle usernum as odd or even
k = usernum;
}
}
n = count; // the size of array v.
// Calculate the sum in a for loop
summedvalue = 0; // initialize summedvalue
for (i=0; i<=n; i++) {
summedvalue += v(i);
}