205k views
2 votes
Hi Please help! this is math and coding soooo ye

Hi Please help! this is math and coding soooo ye-example-1
User Moonfly
by
4.9k points

2 Answers

4 votes

Answer:

49

Explanation:

Cube 7 to get the volume.(343)

Do 7^2 to get 49, then multiply by 6 to get the surface area(294)

Then subtract 343-294=49

User Yuvaraj V
by
4.9k points
5 votes
What language are you programming in? Whatever print function you have it should probably go something like this.
The volume = 343
The surface area = 294

To calculate this in code you could just use
print(343-294);

Or you can use this
(You can swap out the 7s for the variable length)

Print((7*7*7)-(7*7*6));



User OgreSwamp
by
4.9k points