题目描述: 解决过程: 3s解决 代码: class Solution { public: int smallestEvenMultiple(int n) { return (n & 1) ? n * 2 : n; } };