如何拆分数字并乘以其数字?

时间:2015-11-21 11:53:12

标签: java c loops while-loop numbers

嗨我正在使用代码块而且我有点新, 我想拆分一个数字并乘以其数字 如果数字是> 9然后我又想把数字分开并乘以它们, 例如:如果我有数字126,那么新数字将是1 * 2 * 6 = 12 但是12是>然后再次新的数字是1 * 2 = 2,2不是> 9然后离开循环 谢谢

4 个答案:

答案 0 :(得分:0)

请尝试此程序:

public class B {

    public static void main(String[] args) {

        String number = "126";
        int c = 1;
        for (int j =  number.length() ; j >=0; j--) {
        int v = j;
            for (int i = 0; i < v; i++) {
                String s = ""+number.charAt(i);
                c = c*  Integer.parseInt(s.trim());
            }

            System.out.println("result is : "+c);    
            c = 1;
        }        
}
}

答案 1 :(得分:0)

C中的简单解决方案:

int muldigits(unsigned int n) {
    while (n > 9) {
        unsigned int m = n;
        for (n = 1; m; n *= m % 10, m /= 10);
    }
    return n;
}

答案 2 :(得分:-1)

您需要使用一个函数来计算您输入的数字的每个数字,然后迭代直到计算零。这样的东西可以工作,然后只返回switch语句的其余部分:

quotient = number / 10; 
remainder = number % 10; 
switch(remainder)
{
    case 1:
        return 1
        break;
}

答案 3 :(得分:-1)

您可以创建一种方法来查找字符串中的数字字符,如下所示:

public static int Match(String pattern, String word) {
    int abc = 1;
    Matcher m = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE).matcher(word);
    while (m.find()) {

        abc *= Integer.parseInt(m.group());
        System.out.println("val of abc when (m=" + m.group() + ") - " + abc);

    }
    System.out.println("*************************");
    return abc;
}

然后您可以检查main方法中的给定String,直到获得所需的数字:

    String word = "126 Florida Beach";
    String pattern = "\\d";

    int abc = 1;
    do {
        System.out.println("word at  - " + word);
        System.out.println("abc at - " + abc);
        abc = Match(pattern, word);
        word = String.valueOf(abc);

    } while (abc > 9);
    System.out.println("Required Value - " + abc);