He made $40 those 5 days.
8•5=40
Answer:
26
Step-by-step explanation:
The sum of angles in a triangle is 180 degrees, use this and set up an equation;
x + ( 4x -5 ) + 55 = 180
Simplify
x + ( 4x - 5 ) + 55 = 180
5x + 50 = 180
Inverse operations;
5x + 50 = 180
-50 - 50
5x = 130
/5 /5
x = 26
Answer:
The solution to this question is 39
Step-by-step explanation:
Given that :
√(3x+7)+2√(x-8)=0.
√(3x+7)=-2√(x-8) (i)
square of the equation (i)
Then
(√(3x+7))^2=(-2√(x-8))^2
we know that √a*√a=(√a)^2=a So,
(3x+7)=4(x-8)
3x+7=4x-32 //multiply by 4
32+7=4x-3x exchange the value.
39=1x
x=39.
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).