Merging Of Array

Banned
16Feb2011,01:37   #1
angad_aks's Avatar
Code:
import java.io.*;
class merge_array
{
public static void main(int a, int b)throws IOException
{
int c;
int A[] = new int[a];
int B[] = new int [b];
c = a+b;
int C[]= new int[c];
for(i=0; i<a; i++)
{
A[i] = Iteger.parseInt(in.readLine());
    }
    for(j=0;j<b; j++)
    {
        B[j]=Integer.parseInt(in.readLine());
    }
    for(i=0;i<a;i++)
    {
        c[i]=A[i];
    }
    for(j=0; j<b;j++)
    {
        c[i]=B[j];
        i++;
    }
}
    }
Mentor
16Feb2011,14:38   #2
xpi0t0s's Avatar
This is Java, not C++. If you're going to post demo code, you should at least get the language right. If we don't have a Java forum, that means we're not interested in Java demo programs, right?
Go4Expert Founder
16Feb2011,16:42   #3
shabbir's Avatar
Moved to Java forum
Banned
16Feb2011,21:43   #4
angad_aks's Avatar
thanks admin. many thanx 4 encouraging
Invasive contributor
17Feb2011,01:15   #5
lionaneesh's Avatar
Quote:
Originally Posted by angad_aks View Post
thanks admin. many thanx 4 encouraging
angad you should understand the point 'xpi0t0s' want to say...We have told you and others too in previous posts that if you want to post sample code..

It should be some thing different or at least it should have some great commenting so as to make the viewers understand!!!
Pro contributor
19Feb2011,03:33   #6
virxen's Avatar
Quote:
Originally Posted by angad_aks View Post
Code:
import java.io.*;
class merge_array
{
public static void main(int a, int b)throws IOException
{
int c;
int A[] = new int[a];
int B[] = new int [b];
c = a+b;
int C[]= new int[c];
for(i=0; i<a; i++)
{
A[i] = Iteger.parseInt(in.readLine());
    }
    for(j=0;j<b; j++)
    {
        B[j]=Integer.parseInt(in.readLine());
    }
    for(i=0;i<a;i++)
    {
        c[i]=A[i];
    }
    for(j=0; j<b;j++)
    {
        c[i]=B[j];
        i++;
    }
}
    }

and the question is?