How to create 3 arrays using JAVA input?help

Asked By 20 points N/A Posted on -
qa-featured

Hi everyone, I'm really new to programming and design and I'm still in the perfect learning process though I know HTML5 but Java is where I lack knowledge little bit, so friends please guide me I want to create 3 arrays using Java input. Is it possible to create 3 arrays at once that is 

Array[]1,array 2[], array3[]

Please correct me if I'm wrong.

SHARE
Answered By points N/A #184749

How to create 3 arrays using JAVA input?help

qa-featured

Hello,

Every single programming language includes the feature of “Array” as it gives tremendous power to the developer to make his programs more cunningly.

The technique you’re trying to apply is multidimensional array. It’s quite possible to use such type of array on Java, too.

Here’s a complete guide on using multidimensional array on Java. There is also a good explanation on Java array on this page.

The type you're trying to do, in my sense, is incorrect. The correct sequence will be array[][][].

Related Questions