已知一个长方形的长,宽,求这个长方形的周长,周长=2*(长+宽)。 知识点: golang中, '算术运算符 '*','+',分别表示乘法,加法 golang中,括号()的运算优先级高于 * ,+ ,而*的运算优先级又高于+
示例1
输入
2,3
输出
10
备注:
长,宽都是正整数
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ public int perimeter (int a, int b) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ int perimeter(int a, int b) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param a int整型 长方形的长 # @param b int整型 长方形的宽 # @return int整型 # class Solution: def perimeter(self , a , b ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ public int perimeter (int a, int b) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ function perimeter( a , b ) { // write code here } module.exports = { perimeter : perimeter };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param a int整型 长方形的长 # @param b int整型 长方形的宽 # @return int整型 # class Solution: def perimeter(self , a: int, b: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ func perimeter( a int , b int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ int perimeter(int a, int b ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param a int整型 长方形的长 # @param b int整型 长方形的宽 # @return int整型 # class Solution def perimeter(a, b) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ def perimeter(a: Int,b: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ fun perimeter(a: Int,b: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ public int perimeter (int a, int b) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ export function perimeter(a: number, b: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ func perimeter ( _ a: Int, _ b: Int) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param a int整型 长方形的长 * @param b int整型 长方形的宽 * @return int整型 */ pub fn perimeter(&self, a: i32, b: i32) -> i32 { // write code here } }
2,3
10