getting errors

getting errors

public

class positive {

public static void main(String[] args) {

retainPositiveNumbers(a);

}

private

static int n;

private

static int j;

static

int a[]={-1,2,3,4,-5};

static

int c[]={};

public static int[] retainPositiveNumbers(int[] a) {

/*

Please implement this method to

return a new array with only positive numbers from the given array.

The elements in the resulting array shall be sorted in the ascending order.

*/

?

for(int i=0; i<a.length; i++)

{

j=0;

if(a[i]>0)

{

c[j]=a[i];

j++;

}

}

for(int k=0;k<c.length;k++){

System.out.println(c);

}

return c ;

}

}
View Answers

April 27, 2012 at 4:35 PM

This example finds the positive integers from the given array and store these positive integers in another array.

import java.util.*;

public class positive {

public static void main(String[] args) {
int a[]={-1,2,3,4,-5};
retainPositiveNumbers(a);
}
public static void retainPositiveNumbers(int[] a) {
    List<Integer> list=new ArrayList<Integer>();
    for(int i=0; i<a.length;i++){
        if(a[i]>0){
         list.add(new Integer(a[i]));
        }
    }
    int[] c = new int[list.size()];
    for (int i=0; i < c.length; i++){
        c[i] = list.get(i).intValue();
    }
     for (int i=0; i < c.length; i++){
     System.out.println(c[i]);
    }
  }
}









Related Tutorials/Questions & Answers:
getting errors
getting errors  public class positive { public static void main(String[] args) { retainPositiveNumbers(a); } private static int n; private static int j; static int a[]={-1,2,3,4,-5}; static int
Getting 404 errors - Java Beginners
Getting 404 errors  Dear experts, I have embedded a login page inside my landing page - home.jsp. So, at the right-hand column of my page, I... password access I received a 404 errors and I identified that the servlet
Advertisements
i am Getting Some errors in Struts - Struts
i am Getting Some errors in Struts   I am Learning Struts Basics,I am Trying examples do in this Site Examples.i am getting lot of errors.Please Help me
errors
errors  i am getting an error saying cannot find symbol class string.how do i rectify
errors
that what the errors in above code
Compiler errors in java
Compiler errors in java  Hi, I used GenerateRDF java file. Am getting errors when i run this code. I used command prompt only. getting errors as no package exist. i followed your instructions properly. Please help me out
check for errors
check for errors  How can I check for errors
What is the errors?
What is the errors?  ) while ( c <= 5 ) { product *= c; ++c;   if ( gender == 1 ) cout << "Woman" << endl; else; cout << "Man" << endl;   Post the whole code
jsp errors - JSP-Servlet
. Now i am getting less errors compared to previous. But I am getting 2 errors...jsp errors  Hi I got errors when running a jsp file I am giving the file. this is from rose india. I set the class path for 3 jar files i.e
compilation errors
() { } } giving errors: 1) WelcomeServlet.java:37: ')' expected
types of errors in php
types of errors in php  What are the different types of errors in php
Java Program Errors
Java Program Errors  These are the 2 errors which I am getting when executing the java source code extracted from executable jar file The project was not built since its build path is incomplete. Cannot find the class file
ModuleNotFoundError: No module named 'errors'
ModuleNotFoundError: No module named 'errors'  Hi, My Python... 'errors' How to remove the ModuleNotFoundError: No module named 'errors'... to install padas library. You can install errors python with following command
STRUTS2.0 Validation Errors
the previous field errors persist in the page. For eg:if i am not entering both... message("username is required") is not getting removed.It still shows both
selectoptions errors in java script
selectoptions errors in java script  hi, in my web page when I select the color of the image it displays that particular color but when i again opt the select option it displays errors message. How do I rectify this problem
Servlets errors in same page.
Servlets errors in same page.  How do I display errors list in the same page where a form field exists using servlets...........i.e. without using JSP? Please explain with a simple username password program
The errors tag
In this section, you will learn about the errors tag of the Spring form tag library
Getting Exception
Getting Exception  How to get exception from commented code in java
WHAT ARE THE DIFFERENT TYPES OF ERRORS IN PHP?
WHAT ARE THE DIFFERENT TYPES OF ERRORS IN PHP?  WHAT ARE THE DIFFERENT TYPES OF ERRORS IN PHP
getting variables
getting variables   how to get variables from servlet program to webservice program
Correct errors - Java Beginners
Correct errors  Identify and correct the errors in the following program: public java Method { public static method1(int n, m) { n += m; xMethod(3. 4); } public static int xMethod(int n) { if (n > 0) return 1
getting the emplo
getting the emplo   I have one table "EMPLOYEEMASTER" contains 'emp id', 'employee name' for eg: emp id employee name... kumar i want the sql statement for getting like
ModuleNotFoundError: No module named 'masonite-errors'
ModuleNotFoundError: No module named 'masonite-errors'  Hi, My... named 'masonite-errors' How to remove the ModuleNotFoundError: No module named 'masonite-errors' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'pretty-errors'
ModuleNotFoundError: No module named 'pretty-errors'  Hi, My... 'pretty-errors' How to remove the ModuleNotFoundError: No module named 'pretty-errors' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'django-errors'
ModuleNotFoundError: No module named 'django-errors'  Hi, My... 'django-errors' How to remove the ModuleNotFoundError: No module named 'django-errors' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'edeposit.amqp_errors'
ModuleNotFoundError: No module named 'edeposit.amqp_errors'  Hi...: No module named 'edeposit.amqp_errors' How to remove the ModuleNotFoundError: No module named 'edeposit.amqp_errors' error? Thanks   Hi
ModuleNotFoundError: No module named 'haiku-errors'
ModuleNotFoundError: No module named 'haiku-errors'  Hi, My Python... 'haiku-errors' How to remove the ModuleNotFoundError: No module named 'haiku-errors' error? Thanks   Hi, In your python
Getting NumberFormatException
Getting NumberFormatException  Thanks for the reply. Its works well, but whenever I'm using numeric value from 0010 to 0757 it is returning some garbage value. I dont have the idea what is going wrong. Please give me some idea
Getting NumberFormatException
Getting NumberFormatException  Hello Sir, I'm using Integer.parseInt(String str) function which returns a NumberFormatException(Unknown source). I also used Integer.parseInt(String str, int radix) but it also throws the exception
Getting an error :(
Getting an error :(  I implemented the same code as above.. But getting this error in console... Console Oct 5, 2012 10:18:14 AM org.apache.tomcat.util.digester.SetPropertiesRule begin WARNING: [SetPropertiesRule]{Server
getting voucherPin
getting voucherPin  I am doin an online credit topup application..and i need a method to fetch and decrypt the voucherpin from Database.. this is my voucher repository Class. public interface VoucherRepository extends
Java errors when attempting the following.
Java errors when attempting the following.  Give the java errors in attempting the following : 1) performing division operation on string value. 2) redefining base class final method in derived class. 3) defining a method
date_get_last_errors
date_get_last_errors date_get_last_errors alias DateTime::getLastErrors function returns the warnings and errors while parsing a date/time string... about warnings and errors. Example: <?php $date = date_create('asdfasdf
Need urgent help with C++ errors!
Need urgent help with C++ errors!  hi, i'm new to C++ programming. this is my code... i'm using Turbo C++. It's showing so many errors!.. I...() { cout<<"Can somebody fix this?"; } the errors are listed as follows
Im not getting validations - Struts
Im not getting validations  I created one struts aplication im using...{ DynaActionForm studForm = (DynaActionForm)form; ActionMessages errors = new...")); } saveMessages(request,errors); if(errors.isEmpty()){ return
remopving errors incore java programming
remopving errors incore java programming  sir error in program:-file does not contain class runnable program:- class MyRunnable implements Runnable{ public void run(){ System.out.println("Run"); } public
remopving errors incore java programming
remopving errors incore java programming  sir error in program:-file does not contain class runnable program:- class MyRunnable implements Runnable{ public void run(){ System.out.println("Run"); } public
remopving errors incore java programming
remopving errors incore java programming  sir error in program:-file does not contain class runnable program:- class MyRunnable implements Runnable{ public void run(){ System.out.println("Run"); } public
need to fix errors please help
need to fix errors please help  it does have 2 errors what should i fix? import java.io.*; class InputName static InputStreamReader reader = new InputStreamReader(system.in); static BufferedReader input = new BufferedReader
Runtime Errors
Runtime Errors          Errors are arised when there is any logic problem with the logic of the program.  In this program we are trying
ModuleNotFoundError: No module named 'django-client-errors'
ModuleNotFoundError: No module named 'django-client-errors'  Hi...: No module named 'django-client-errors' How to remove the ModuleNotFoundError: No module named 'django-client-errors' error? Thanks   Hi
ModuleNotFoundError: No module named 'drf-friendly-errors'
ModuleNotFoundError: No module named 'drf-friendly-errors'  Hi, My... named 'drf-friendly-errors' How to remove the ModuleNotFoundError: No module named 'drf-friendly-errors' error? Thanks   Hi
ModuleNotFoundError: No module named 'cf-pretty-form-errors'
ModuleNotFoundError: No module named 'cf-pretty-form-errors'  Hi...: No module named 'cf-pretty-form-errors' How to remove the ModuleNotFoundError: No module named 'cf-pretty-form-errors' error? Thanks   Hi
ModuleNotFoundError: No module named 'datasette-show-errors'
ModuleNotFoundError: No module named 'datasette-show-errors'  Hi...: No module named 'datasette-show-errors' How to remove the ModuleNotFoundError: No module named 'datasette-show-errors' error? Thanks   Hi
ModuleNotFoundError: No module named 'django-client-errors'
ModuleNotFoundError: No module named 'django-client-errors'  Hi...: No module named 'django-client-errors' How to remove the ModuleNotFoundError: No module named 'django-client-errors' error? Thanks   Hi
ModuleNotFoundError: No module named 'drf-friendly-errors'
ModuleNotFoundError: No module named 'drf-friendly-errors'  Hi, My... named 'drf-friendly-errors' How to remove the ModuleNotFoundError: No module named 'drf-friendly-errors' error? Thanks   Hi
ModuleNotFoundError: No module named 'drf-friendly-errors-mod'
ModuleNotFoundError: No module named 'drf-friendly-errors-mod'  Hi...: No module named 'drf-friendly-errors-mod' How to remove the ModuleNotFoundError: No module named 'drf-friendly-errors-mod' error? Thanks   
Getting around in Agra
Getting around in Agra  Hi, I am looking for complete information on getting around in Agra? Thanks
Help please, some strange errors
this errors so i have posted the whole program here. Here i tried to make the monopoly... is causing that run-time errors? Any kind of help will be helpful to me. and let
Getting UIButton by Tag
Getting UIButton by Tag  Example code for getting the UIButton by id.   Hi, You can use the following code: UIButton *myBtn = (UIButton *)[self.view viewWithTag:1]; Thanks

Ads