Question: array to ASCII Write a java method named representASCII that accepts an array of characters, and returns an array of integers that contains the decimal
array to ASCII


Write a java method named representASCII that accepts an array of characters, and returns an array of integers that contains the decimal representation (ASCII) of each character in the input array. Use the method signature: public static int [] representASCII(char....... input). input array output array { '6', 'k', 'R','}'} { '0',!!, '7', 'W', '*'} {54, 107,82, 125} {48, 46, 55,94, 42}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
