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

 

jebbert@volusia.k12.fl.us > quiz2023_02_28_HL_digitProductRecursiveArray
prev  |  next  |  chance

Write a method, based on digitProductRecursive that returns an array of the results of finding the recursive digit product of all the integers from 0 up to 'max'. Look at the test data for examples. You may copy-and-paste your solution(s) to other problems on this test to use as helper methods or to use in other ways.


quiz2023_02_28_HL_digitProductRecursiveArray(5) → [0, 1, 2, 3, 4, 5]
quiz2023_02_28_HL_digitProductRecursiveArray(11) → [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1]
quiz2023_02_28_HL_digitProductRecursiveArray(14) → [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4]

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

public int[] quiz2023_02_28_HL_digitProductRecursiveArray(int max) { }

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

Difficulty: 290

Copyright Nick Parlante 2017 - privacy