#力扣:2413. 最小偶倍数@FDDLC

2413. 最小偶倍数 - 力扣(LeetCode)

一、Java

class Solution {
    public int smallestEvenMultiple(int n) {
        return n%2==0?n:n*2;
    }
}

你可能感兴趣的:(力扣刷题:Java,C++,Python,JS,Go,leetcode,算法,职场和发展)