在一个农场里,有n个牧场,每个牧场有a头牛。农场的主人想知道,所有牧场的牛的数量总和是多少。 由于农场主人不善于计算,他希望你能帮他设计一个算法,不用加减乘除,计算出所有牧场的牛的数量总和。
示例1
输入
3,5
输出
15
示例2
输入
4,7
输出
28
示例3
输入
0,1
输出
0
备注:
0 = n,a = 10000
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ public int multiply (int n, int a) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ int multiply(int n, int a) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 # @param a int整型 # @return int整型 # class Solution: def multiply(self , n , a ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ public int multiply (int n, int a) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ function multiply( n , a ) { // write code here } module.exports = { multiply : multiply };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 # @param a int整型 # @return int整型 # class Solution: def multiply(self , n: int, a: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ func multiply( n int , a int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ int multiply(int n, int a ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param n int整型 # @param a int整型 # @return int整型 # class Solution def multiply(n, a) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ def multiply(n: Int,a: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ fun multiply(n: Int,a: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ public int multiply (int n, int a) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ export function multiply(n: number, a: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ func multiply ( _ n: Int, _ a: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @param a int整型 * @return int整型 */ pub fn multiply(&self, n: i32, a: i32) -> i32 { // write code here } }
3,5
15
4,7
28
0,1
0