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

 

simona1@sfusd.edu arrays2 > firstMmultiplesOfN
prev  |  next  |  chance

Returns an integer array of length m with the first m multiples of n starting with n * 1. m will be zero or larger.


firstMmultiplesOfN(1, 2) → [2]
firstMmultiplesOfN(3, 2) → [2, 4, 6]
firstMmultiplesOfN(5, 2) → [2, 4, 6, 8, 10]

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

public int[] firstMmultiplesOfN(int m,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