Write a program in Visual Foxpro to check a number for perfect square

1.3k Views Asked by At

Ask the user to input a number. Check whether the entered number is a perfect square. I tried. enter image description here

1

There are 1 best solutions below

0
On BEST ANSWER
local num, nSqrt
Input "Enter a number" to num
IF m.num > 0 
  nSqrt = SQRT(m.num)
  IF m.nSqrt == INT(m.nSqrt)
    ? LTRIM(STR(m.num)) + ' is a perfect square'
  ENDIF
endif