Zero is nothing, nada, nil, zip. It doesn't have any factors so it can't have any in common.
Chat with our AI personalities
int dividend,divisor,remainder; int division(int p,int q){ int quotient=1; /*if divisor and diviend are equal then quotient=1*/ if(p==q){ remainder=0; return 1; } /*if dividend is smaller than divisor then remainder=dividend*/ if(p<q){ remainder=p; return 0; } /*shift left till divisor > dividend*/ while(p>=q){ q<<=1; quotient<<=1; } /*shift right for one time so that divisor become smaller than dividend*/ q>>=1; quotient>>=1; /*again call division recurcively*/ quotient+=division(p-q,divisor); return quotient; } int main(){ cout<<"\nEnter dividend:"; cin>>dividend; cout<<"\nEnter divisor:"; cin>>divisor; cout<<"\nQuotient:"<<division(dividend,divisor); cout<<"\nRemainder:"<<remainder; //system("pause"); return 0; }
x2 - 12x + 32 = 0 x2 - 8x - 4x +32 = 0 x(x -8) - 4(x -8) = 0 (x - 4)(x - 8) = 0 x = 4 or x = 8
63x^2 + 44x - 32 = 0 (9x - 4)(7x + 8) = 0
A cube has straight edges whereas a cylinder has round edges
128 + 0 + 32 + 16 + 0 + 4 + 0 + 1 = 181