id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

james.shockey@austinisd.org > productOfDigits
prev  |  next  |  chance

LASA_AP_WhileLoop_Set01_Problem04

Problem 4a: Product of Digits
Problem: Given a positive integer n, return the product of its digits. If n is 0, return 1.
Solution Approach: Use a while loop to extract each digit of n by taking the remainder when dividing by 10, then multiply the digit to a cumulative product. Continue dividing n by 10 to remove the last digit until n becomes 0.


productOfDigits(1234) → 24
productOfDigits(4321) → 24
productOfDigits(102) → 0

...Save, Compile, Run (ctrl-enter)

public int productOfDigits(int n) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Copyright Nick Parlante 2017 - privacy