Search:

Type: Posts; User: severus1

Search: Search took 0.10 seconds.

  1. Replies
    16
    Views
    2,240

    Re: Merging 2 arrays

    yea,now it worked,was doing a mistake in taking input
    Thanks
  2. Replies
    16
    Views
    2,240

    Re: Merging 2 arrays

    guys,can u plz help me out on how to get my program compiled correctly on ideone.com
  3. Replies
    16
    Views
    2,240

    Re: Merging 2 arrays

    im compiling the code on ideone.com
  4. Replies
    16
    Views
    2,240

    Re: Merging 2 arrays

    still not getting the output

    import java.util.*;
    class a
    {
    public static void main(String args[])
    {
    int i,j;
    int []a=new int[3];
    int []b=new int[3];
  5. Replies
    16
    Views
    2,240

    Re: Merging 2 arrays

    what im expecting
    input
    Enter the elements of the first array
    1
    2
    3
    Enter the elements of the second array
    4
    5
    6
  6. Replies
    16
    Views
    2,240

    Merging 2 arrays

    i have to merge 2 arrays of size 3,im getting incorrect output plz help

    import java.util.*;
    class a
    {
    public static void main(String args[])
    {
    int i,j;
    int []a=new int[3];
    int []b=new...
Results 1 to 6 of 6