java Methods | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

java Methods

create a method called returnIntFrom that takes two arguments: -an array of ints -An int that represents the index of value to be returned Method should return a single integer in the specific index

2nd Apr 2019, 11:37 PM
Albert Yakubov
Albert Yakubov - avatar
1 Antwort
+ 2
class with main() ... declare int[] array and assign some {values} System.out.println ( call your method (array, 2) ) with static metod returnIntFrom( with two parameters int[] array and int index ) return value from array at [index] position // add class and metod syntax {} and ;;;; and int as method return type
3rd Apr 2019, 12:08 AM
zemiak