Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Function that takes in an int array and returns a string array with all elements converted to strings

Trying to make a function that takes in an int[] numbers as input and returns a String[] with the values of numbers converted to Strings using the function. Not sure how to continue or how to convert ints to strings.

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

You can use Integer#toString to convert the integer to a string:

int[] nums = ...;
String[] stringNums = new String[nums.length]
for(int i = 0; i < nums.length; i++){
    stringNums[i] = Integer.toString(nums[i]);
}
return stringNums;
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading