Search:

Type: Posts; User: severus1

Search: Search took 0.07 seconds.

  1. Replies
    2
    Views
    3,120

    Re: letter pattern

    the second letter is M,the pattern couldnt be copy pasted correctly
  2. Replies
    2
    Views
    3,120

    letter pattern

    Desired output-


    *** * *
    * * * * * *
    * * * * *
    * * * *
    *** * *

    these are the separate codes for D and M,now how to...
  3. Replies
    16
    Views
    2,240

    Re: Merging 2 arrays

    yea,now it worked,was doing a mistake in taking input
    Thanks
  4. 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
  5. Replies
    16
    Views
    2,240

    Re: Merging 2 arrays

    im compiling the code on ideone.com
  6. 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];
  7. 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
  8. 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...
  9. Replies
    6
    Views
    1,374

    Re: Reversing an array

    thx a lot hexwind
  10. Replies
    6
    Views
    1,374

    Re: Reversing an array

    i think my logic is rite,plz find the bug
  11. Replies
    6
    Views
    1,374

    Reversing an array

    im getting incorrect output in my code of reversing an array,plz help

    import java.util.*;
    class a
    {
    public static void main(String args[])
    {
    int i,temp;
    int []a=new int[5];
    Scanner sc=new...
Results 1 to 11 of 11