当前位置:   article > 正文

最小二乘法和递归最小二乘法_C ++程序递归获得乘法

递归最小二乘c++

最小二乘法和递归最小二乘法

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(在不同的行中)

  1. Sample Input:
  2. 3
  3. 5
  4. Sample Output:
  5. 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:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/131523
推荐阅读
相关标签
  

闽ICP备14008679号