| Author |
Odd numbers
|
apollo abel
Ranch Hand
Joined: Mar 31, 2006
Posts: 32
|
|
Hmmm i dont know how to get an odd number, lets say i create a loop, for(int i; i<=num; i++) the number will go from one to whatever number the user entered, now, how do i filter the odd numbers??
|
 |
marc weber
Sheriff
Joined: Aug 31, 2004
Posts: 11343
|
|
Here's one way: Start with an even or odd (0 or 1), depending on what you want. Then instead of incrementing by one using i++, increment by two using i+=2. Here's another way: Increment i as before. Then int odd = (2*i) + 1. [ April 11, 2006: Message edited by: marc weber ]
|
"We're kind of on the level of crossword puzzle writers... And no one ever goes to them and gives them an award." ~Joe Strummer
sscce.org
|
 |
apollo abel
Ranch Hand
Joined: Mar 31, 2006
Posts: 32
|
|
this is what i got: Enter a number: 28 The perfect numbers are: 6 The perfect numbers are: 28 The Abundant numbers are: 14 The Abundant numbers are: 20 The Abundant numbers are: 26 though i need the odd numbers thanks for the support EDIT: actually thats an error, 14 is not an abundant number, the factors of 14(not counting the number itself) are 2+7=9<i, and it needs to be >i [ April 11, 2006: Message edited by: apollo abel ]
|
 |
Garrett Rowe
Ranch Hand
Joined: Jan 17, 2006
Posts: 1295
|
|
Another way to test for odd numbers: if (num % 2 != 0) num is odd
|
Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them. - Laurence J. Peter
|
 |
apollo abel
Ranch Hand
Joined: Mar 31, 2006
Posts: 32
|
|
well this is what i ended up with: What is your name? neo Enter a number: 5000 6: Perfect number 28: Perfect number 496: Perfect number 945: Odd abundant number 1575: Odd abundant number 2205: Odd abundant number 2835: Odd abundant number 3465: Odd abundant number 4095: Odd abundant number 4725: Odd abundant number do you guys thing the answer is right??
|
 |
marc weber
Sheriff
Joined: Aug 31, 2004
Posts: 11343
|
|
Originally posted by apollo abel: ...do you guys thing the answer is right??
Well, it found the 3 perfect numbers in that range (the 4th isn't until 8128). And it found the first abundant odd number, 945, as well as odd multiples of 945 within range, 2835 and 4725. So the results look plausible. The real questions are: How confident are you in your algorithm?Do you have a way to verify test results?(If this page is accurate, there are 2487 abundant numbers below 10,000. You might try using your code to count these, and see if you get the same result.) [ April 11, 2006: Message edited by: marc weber ]
|
 |
Layne Lund
Ranch Hand
Joined: Dec 06, 2001
Posts: 3061
|
|
Originally posted by apollo abel: ... do you guys thing the answer is right??
Well, that depends. What is the question? Layne
|
Java API Documentation
The Java Tutorial
|
 |
 |
|
|
subject: Odd numbers
|
|
|