Answer:
x = 4 when y = 12
Step-by-step explanation:
The ratio of y to x is 6:2. If you multiply either one of them, you must do the same to the remaining number. So, when you multiply 6 by 2 to get 12, you must also multiply 2 by 2 to keep the ratio equal and the same. 2x2 = 4, so x=4 when y=12. Hope this helped! Good luck with other math problems :)
4inches and 4yards that is what I got but it might be wrong
// 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);
}
Answer:
Write the equation of the graph in slope intercept form
To write a slope-intercept equation from a graph, find the point where the graph crosses the y-axis, b, and the slope, m, and plug them into the equation y=mx+b.
Step-by-step explanation:
hope this helps