2413:最小偶倍数

This commit is contained in:
轩辕龙儿 2022-09-19 22:17:10 +08:00
parent 7a721c901e
commit 4177c5a147
2 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,46 @@
//给你一个正整数 n 返回 2 n 的最小公倍数正整数
//
//
//
// 示例 1
//
// 输入n = 5
//输出10
//解释5 2 的最小公倍数是 10
//
//
// 示例 2
//
// 输入n = 6
//输出6
//解释6 2 的最小公倍数是 6 注意数字会是它自身的倍数
//
//
//
//
// 提示
//
//
// 1 <= n <= 150
//
//
// 👍 5 👎 0
package leetcode.editor.cn;
//2413:最小偶倍数
public class SmallestEvenMultiple {
public static void main(String[] args) {
// 测试代码
Solution solution = new SmallestEvenMultiple().new Solution();
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int smallestEvenMultiple(int n) {
return n % 2 == 0 ? n : n * 2;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,27 @@
给你一个正整数 <code>n</code> ,返回 <code>2</code><em> </em><em> </em><code>n</code> 的最小公倍数(正整数)。
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>n = 5
<strong>输出:</strong>10
<strong>解释:</strong>5 和 2 的最小公倍数是 10 。
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>n = 6
<strong>输出:</strong>6
<strong>解释:</strong>6 和 2 的最小公倍数是 6 。注意数字会是它自身的倍数。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= n &lt;= 150</code></li>
</ul>
<div><li>👍 5</li><li>👎 0</li></div>