Is 52 closer to 0 or 100? (since it rounds to the nearest hundreds)
Since 52 is over the halfway point, which is 50, that means its closer to 100
Answer: 100
Answer:
•12
Step-by-step explanation:
fInd Little bit at end by pythogotous and find are of shaded the find areo of non shaded and take away with shaded triangle
Answer:

Step-by-step explanation:
It's an arithmetic sequence.

The difference is constant.
The explicit formula of an arithmetic sequence:

Substitute:

<em>use distributive property</em>

To get the decimal you have to divide the numerator by the denominator.
-19÷-50=-0.38
-19/50=-0.38
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).