Given that set P is the perfect squares between 50 and 90. List the elements of set P.
Answers
Answered by
2
Answer:
Given two given numbers a and b where 1<=a<=b, find the number of perfect squares between a and b (a and b inclusive).
Examples
Input : a = 3, b = 8
Output : 1
The only perfect in given range is 4.
Input : a = 9, b = 25
Output : 3
The three squares in given range are 9,
16 and 25
Answered by
2
64,81
Hope this answer helps you
Similar questions