作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在java中,我想检查一个数字的每个数字是奇数还是偶数。例如,如果您要运行代码,您会得到-
13451: 4 odd 1 even
5555 : 4 odd
18529: 3 odd 2 even
据我所知,您可以将数字转换为字符串,并将子字符串转换为片段。然后,完成此操作后,您可以检查它是否奇怪。
但是如何呢?
代码(以及更多解释)
public class numberSorter
{
public static void main(String[] args){
for(int i = 0;i<100000;i++){
//So here I want it so that I can see which numbers from 1-100000
//have all odd number digits.Using a for loop makes it easier,
//but how would you do it with "i"?
}
}
}
最佳答案
好吧,如果您只是对只有奇数位的数字感到好奇,那么您绝对不需要计算奇数位和偶数位的数量。如果你需要通过数数来解决这个问题,正确的答案将是偶数为 0 的数字。为此,您可以在本主题中看到许多答案。如果没有,我建议您在循环中使用这个简单的函数:
//This function checks if a specific number has only odd digits
private static boolean isHasAllDigitsOdd(int number)
{
//first of all check if the number is 0
if(number==0)
{
return false;
}
//while the last digit is odd cut that form the number
while((number>0)&&(number%2==1))
{
number /= 10;
}
//if the number is 0 then all of its digits were cut
if(number ==0)
{
return true;
}
else//otherwise it has a even digit
{
return false;
}
}
因此,定义函数后,您的循环将如下所示:
public static void main(String[] args){
for(int i = 0;i<100000;i++){
if(isHasAllDigitsOdd(i))
{
System.out.println(i);
}
}
}
关于java - 查找数字的个位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34345443/
我正在寻找一种快速添加数据行的方法,例如 3333456332.... 3334456332.... 3343446332.... 3331355332.... (但更长)并将每个数字加到这个结果中:
我有一个文件,其中包含未按字节对齐的数据,我想在文件中查找(例如 3 位),然后开始将字符读入缓冲区。有没有一种“简单”的方法可以做到这一点? 如果可能,我想避免对缓冲区中的每个字符进行位移。 最佳答
我是一名优秀的程序员,十分优秀!