Results 1 to 4 of 4
Thread: [Java Eclipse] How to combine
- 02-04-2013, 03:15 PM #1
Member
- Join Date
- Jan 2013
- Posts
- 9
- Rep Power
- 0
[Java Eclipse] How to combine
Sample output:
Enter the numbers of input you want:3
Enter number:2
Enter number:5
Enter number:3
The even numbers are:2
The odd numbers are:5 3
And here's my coding :
And the output something like thisimport java.util.Scanner;
public class EditCodes {
public static void main(String args[]){
Scanner a = new Scanner (System.in);
int loop;
System.out.print("Enter the numbers of input you want: ");
loop = a.nextInt();
int num[] = new int[loop];
for(int x=0;x<loop;x++){
System.out.print("Enter number: ");
num[x]=a.nextInt();
}
for(int i=0; i < num.length; i++){
if(num[i]%2 == 0)
System.out.println("The even numbers are: " + num[i]);
else
System.out.println("The odd numbers are: " + num[i]);
}
}
}
How to add or combine in one line? like the sample output above? Is there anyone would help me?Enter the numbers of input you want: 3
Enter number: 2
Enter number: 5
Enter number: 3
The even numbers are: 2
The odd numbers are: 5
The odd numbers are: 3
- 02-04-2013, 03:43 PM #2
Re: [Java Eclipse] How to combine
declare two new arrays, one called odd and one called even. Add the numbers accordingly and use them for your output.
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
- 02-04-2013, 04:44 PM #3
Member
- Join Date
- Jan 2013
- Posts
- 9
- Rep Power
- 0
- 02-04-2013, 05:33 PM #4
Member
- Join Date
- Jan 2013
- Posts
- 9
- Rep Power
- 0
Similar Threads
-
Combine several "Java Desktop Database Applications" together ?
By Mv.c9 in forum NetBeansReplies: 2Last Post: 01-01-2012, 06:07 AM -
Combine two S.O.P in one
By javauserjava in forum New To JavaReplies: 5Last Post: 04-05-2011, 06:27 AM -
How to combine Java Bean DataSource Connectiobn Report in JDBC Connection Subreport
By Prashant.surwade in forum Advanced JavaReplies: 1Last Post: 08-28-2009, 11:46 AM -
How to combine mysql and java?
By sandeeprao.techno in forum Advanced JavaReplies: 1Last Post: 05-21-2008, 04:41 AM -
Combine package of(jdk,eclipse and tomcat)
By joseph in forum EclipseReplies: 0Last Post: 04-07-2008, 01:18 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks