How to find the square of a number?

‘x = inputbox ("enter a number for squaring:") 'Input by this line or below line

x = 4

msgbox "Square is :"&x *x

             

Comments