给定两个有符号32位整数a和b,返回a和b中较大的
示例1
输入
1,2
输出
2
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ public int getMax (int a, int b) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ int getMax(int a, int b) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # 获取最大值 # @param a int整型 # @param b int整型 # @return int整型 # class Solution: def getMax(self , a , b ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ public int getMax (int a, int b) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ function getMax( a , b ) { // write code here } module.exports = { getMax : getMax };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # 获取最大值 # @param a int整型 # @param b int整型 # @return int整型 # class Solution: def getMax(self , a: int, b: int) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ func getMax( a int , b int ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ int getMax(int a, int b ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # 获取最大值 # @param a int整型 # @param b int整型 # @return int整型 # class Solution def getMax(a, b) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ def getMax(a: Int,b: Int): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ fun getMax(a: Int,b: Int): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ public int getMax (int a, int b) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ export function getMax(a: number, b: number): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 获取最大值 * @param a int整型 * @param b int整型 * @return int整型 */ func getMax ( _ 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 getMax(&self, a: i32, b: i32) -> i32 { // write code here } }
1,2
2