What is 9 inches? Is 9 inches the diameter? Or the radius? What?
The equation for circumference is pi x diameter.
So assuming the 9 inches is the diameter:
Pi x 9 = 28.2743339
Circumference = 28.274 (3 d.p.)
The birth weight of elephants at the 85th percentile is 262.16 pounds
<h3>What is the standard deviation?</h3>
Standard deviation is defined as the amount of variation or the deviation of the numbers from each other.
Given that:-
The average birth weight of elephants is 200 pounds
= 200
The deviation of 60 pounds.
= 60
The birth weight of elephants at the 85th percentile. z = 85%= 1.036
Now from the formula of z-score:-

Hence the birth weight of elephants at the 85th percentile is 262.16 pounds
To know more about standard deviation follow
brainly.com/question/475676
#SPJ1
// 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);
}