cmath を使用せずに double 型の 2 つの入力のフロアを取得するにはどうすればよいですか。洞察をいただければ幸いです..ありがとう
int main()
{
floors=floor(n1);
cout<< " The floor of value 1 is " <<floors<<endl;
floors=floor(n2);
cout<<" The floor of value 2 is " <<floors<<endl;
long floor(long f)
{
if( (f+ 0.5) >= (int(f)-1) )
return int (f)-1;
else
return int (f);
}