255 litres for 340 km
for 1 km = 255/340 litres
for 100 km = 255/340 * 100 = 75 litres
Answer:
☆*: .。..。.:*☆☆*: .。..。.:*☆☆*: .。..。.:*☆☆
Hi! The answer to your question is 31
Step-by-step explanation:
☆*: .。..。.:*☆☆*: .。..。.:*☆☆*: .。..。.:*☆☆
☆Brainliest is greatly appreciated!☆
Hope this helps!!
- Brooklynn Deka
Answer:
23
Step-by-step explanation:
Taking an algebraic approach
let the number be n, then (n - 17) is 17 subtracted from number and
- 2(n - 17) = - 12 ( divide both sides by - 2 )
n - 17 = 6 ( add 17 to both sides )
n = 23
Thus Julio's number was 23
2l+2w=perimeter <= equation for perimeter
<span>w+4=l <=length is 4 greater than width </span>
<span>2w+2(w+4)=24 <= plug in the l in the first equation with the second equation </span>
<span>2w+2w+8=24 <= solve the equation </span>
<span>4w=16 </span>
<span>w=4 </span>
<span>and, since </span>
<span>w+4=l <= length is 4 greater than width </span>
<span>then l=4+4 </span>
<span>l=8</span>
In pseudocode
num2guess = random(1,100)
pnum = 0
while (pnum != num2guess) {
pnum = ask_player("What number I'm thinking?")
if (pnum > num2guess) {
print("Too high.")
} else if (pnum < num2guess) {
print("Too low.")
}
}
print("Good job!")