1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/统计各位数字之和为偶数的整数个数 [count-integers-with-even-digit-sum].html
2022-03-29 12:43:11 +08:00

33 lines
941 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个正整数 <code>num</code> ,请你统计并返回 <strong>小于或等于</strong> <code>num</code> 且各位数字之和为 <strong>偶数</strong> 的正整数的数目。</p>
<p>正整数的 <strong>各位数字之和</strong> 是其所有位上的对应数字相加的结果。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>num = 4
<strong>输出:</strong>2
<strong>解释:</strong>
只有 2 和 4 满足小于等于 4 且各位数字之和为偶数。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>num = 30
<strong>输出:</strong>14
<strong>解释:</strong>
只有 14 个整数满足小于等于 30 且各位数字之和为偶数,分别是:
2、4、6、8、11、13、15、17、19、20、22、24、26 和 28 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= num &lt;= 1000</code></li>
</ul>