赞
踩
最小二乘法和递归最小二乘法
Given two integers m and n, calculate and return their multiplication using recursion. You can only use subtraction and addition for your calculation. No other operators are allowed.
给定两个整数m和n , 使用递归计算并返回它们的乘法 。 您只能将减法和加法用于计算。 不允许其他运算符。
Input format: m and n (in different lines)
输入格式:m和n(在不同的行中)
- Sample Input:
- 3
- 5
-
- Sample Output:
- 15
Explanation:
说明:
In this question, recursion enables us to multiply the numbers by adding them multiple times. So, for inputs, 3 and 5, the result occurs to be 15.
在这个问题中,递归使我们能够通过多次相乘来相乘。 因此,对于输入3和5,结果为15。
Algorithm:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。