You need to provide two or more positive integer numbers.
40x7
The verb "to multiply" in Spanish is "mutiplicar." The command form, in other words, if you are telling a student to multiply some numbers, is "multiplica." The first word is pronounced 'Mul-tee-plee-CAR." The second one is pronounced "mul-tee-PLEE-cah."
ya i have two of em in my back yard
int mul (int a, int b) { int sum= 0; for (; b>0; --b) sum -= -a; for (; b<0; ++b) sum -= a; return sum; }
In Native Korean, it's 스물둘 (seu-mul-dul) and in Sino-Korean, it's 이십이 (ee-ship-ee).
5,3
The product of two numbers is the answer to multiplying the two numbers together.
The quantity of two numbers is the product of the two numbers. Just multiply them together. The answer is the quantity of the two numbers.
The LCM of two numbers is sometimes the product of the two numbers.
The product of two positive numbers or two negative numbers is a positive number.
I suppose you wanted to ask: how to do multiplication with repeated addition. int mul (int a, int b) { int sum= 0; int sign= 1; if (b<0) { sign= -1; b= -b;} for (; b; --b) sum = sum + a; return sign*sum; }