• 2022-06-08
    Math类有如下函数public static int min(int a,int b)则以下用法正确的是
    A: int c=min(5,3);
    B: int c=Math.min(5,3);
    C: int c=math.min(5,3);