Answer:
// code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
int h,q=0,i=1;
cout<<"Enter the value of h:";
// read the value of h
cin>>h;
// find number of perfect square number less than h
do{
i++;
q++;
}while(i*i<h);
// print the count
cout<<"number of perfect square less than "<<h<<" are:"<<q<<endl;
return 0;
}
Explanation:
Read value of h from user.check each number from 1 to h, if any one is perfect square then increment the value of q.Then print the value of q.
Output:
Enter the value of h:19
number of perfect square less than 19 are:4