Sort by

recency

|

284 Discussions

|

  • + 0 comments

    there are 11 errors in java1D array

  • + 0 comments

    Question is not clear Every confusing

  • + 0 comments

    I'm a developer for the last 25 years. I didn't understood the problem. It says "the code does X". No it does not !. It says blah blah blah x 9999 it's explained in a very complex way. I dont understand it. In the end I see the solutions. I was right, the code does not do what it says it does. It's so stupidly and wrongfully described. It should have said "Code whatever is needed for the user to enter a number representing the next amount of numbers to be entered, then keep asking all those numbers and save them in an array, respecting the fullfilling order"

  • + 0 comments

    Java logic to pass the elements in an array*

     int[] a =  new int[n];
                    for(int i=0;i<a.length;i++)
                    {
                      a[i]= scan.nextInt();
                     }
    
  • + 0 comments

    solution in java

            int[] a = new int[n];
            for (int i = 0; i < n; i++){
                a[i]= scan.nextInt();
            }