HugeInt HugeInt::operator/( const HugeInt &op2 )const { HugeInt temp; for( inti=
ID: 3617906 • Letter: H
Question
HugeInt HugeInt::operator/( const HugeInt &op2 )const
{
HugeInt temp;
for( inti=29;i>=0;i-- )
{
if( integer[i]>op2.integer[i])
{
temp.integer[i]= integer[i] /op2.integer[i];
temp.integer[i]%=10;
}
else
;
}
return temp;