I was bored and thought of this. It can find the volume of a cylinder, cube, cone, sphere, pyramid.
Printable View
I was bored and thought of this. It can find the volume of a cylinder, cube, cone, sphere, pyramid.
I think you made an error in the cylinder calculations
VB Code:
Text3 = Val(3.14) * Val(Text1) * 2 * Val(Text2) 'It should be: Text3 = Val(3.14) * Val(Text1) [B]^[/B] 2 * Val(Text2)
I know this. See when i made this at first i didn't know if vb supported the ^ feature, but you still get the same answer either way.
Um, no.
3*2 = 6
3^2 = 9
4*2 = 8
4^2 = 16
5*2 = 10
5^2 = 25
They give very different results
hmm well they are accurate with all the numbers i enter