| View previous topic :: View next topic |
| Author |
Message |
zaczac Master Cheater
Reputation: 0
Joined: 01 May 2007 Posts: 266 Location: Ontario, Canada
|
Posted: Tue Apr 13, 2010 2:36 pm Post subject: Giving 2 Paypal $ for doing my homework.. |
|
|
2$ USD for anyone who wants to do my java programming homework...
We use ready to program java and Its due tomorrow (April 14th)
Write Classes and methods to:
Accept a sequence of three numbers from a user in one string
Break the string into 3 number variables (if possible)
verify that only three valid numbers were entered;
determine weather the sequence is linear, exponential, fibonacci or none of these sequence types; display all six numbers.
Example 1
Input
Enter a sequence of three numbers such as:"1 2 3" enter
Output
Input "1,2,3
The sequence is linear. The next three terms are : 4,5,6.
The sequence is fibonacci. The next three terms are 5,8,13.
The sequence is not exponential. |
|
| Back to top |
|
 |
The Fish Expert Cheater
Reputation: 3
Joined: 11 Aug 2008 Posts: 114 Location: Ohio bitch
|
Posted: Tue Apr 13, 2010 2:38 pm Post subject: |
|
|
Wow! 2 whole dollars! _________________
It was nice while it lasted. |
|
| Back to top |
|
 |
Phox I post too much
Reputation: 110
Joined: 11 Nov 2008 Posts: 2034
|
Posted: Tue Apr 13, 2010 2:40 pm Post subject: |
|
|
| If this was something I could actually do, I would charge at least 5 bucks. |
|
| Back to top |
|
 |
zaczac Master Cheater
Reputation: 0
Joined: 01 May 2007 Posts: 266 Location: Ontario, Canada
|
Posted: Tue Apr 13, 2010 2:41 pm Post subject: |
|
|
hmm 5$ possibly  |
|
| Back to top |
|
 |
Saric Advanced Cheater
Reputation: 20
Joined: 20 Jul 2008 Posts: 61 Location: Somewhere. Over teh rainbow.
|
Posted: Tue Apr 13, 2010 2:49 pm Post subject: |
|
|
| zaczac wrote: | hmm 5$ possibly  |
Stop being lazy and do it yourself. |
|
| Back to top |
|
 |
[/quote]Effect How do I cheat?
Reputation: -1
Joined: 17 Jul 2010 Posts: 0
|
Posted: Tue Apr 13, 2010 2:51 pm Post subject: |
|
|
| Good thing you are taking a class in which you will end up learning nothing, and only lose money because you are too lazy to do the homework yourself. |
|
| Back to top |
|
 |
zaczac Master Cheater
Reputation: 0
Joined: 01 May 2007 Posts: 266 Location: Ontario, Canada
|
Posted: Tue Apr 13, 2010 2:56 pm Post subject: |
|
|
Highschool class, its useless the teacher spent 2 months trying to teach the class how to get input from the keyboard...most of the students don't even show up in the class. I only took it because I needed one more credit to graduate...besides programming just isn't my thing  |
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Tue Apr 13, 2010 2:57 pm Post subject: |
|
|
| I'd do it for 5$, pay first |
|
| Back to top |
|
 |
Saric Advanced Cheater
Reputation: 20
Joined: 20 Jul 2008 Posts: 61 Location: Somewhere. Over teh rainbow.
|
Posted: Tue Apr 13, 2010 3:05 pm Post subject: |
|
|
| zaczac wrote: | Highschool class, its useless the teacher spent 2 months trying to teach the class how to get input from the keyboard...most of the students don't even show up in the class. I only took it because I needed one more credit to graduate...besides programming just isn't my thing  |
Then learn. |
|
| Back to top |
|
 |
zaczac Master Cheater
Reputation: 0
Joined: 01 May 2007 Posts: 266 Location: Ontario, Canada
|
Posted: Tue Apr 13, 2010 3:07 pm Post subject: |
|
|
| I have no use for programming actually find it quite boring..Just not something I want to learn. |
|
| Back to top |
|
 |
Saric Advanced Cheater
Reputation: 20
Joined: 20 Jul 2008 Posts: 61 Location: Somewhere. Over teh rainbow.
|
Posted: Tue Apr 13, 2010 3:10 pm Post subject: |
|
|
| zaczac wrote: | | I have no use for programming actually find it quite boring..Just not something I want to learn. |
Then don't come crying into random spam asking for help. |
|
| Back to top |
|
 |
-J- Master Cheater
Reputation: 1
Joined: 27 Jan 2008 Posts: 321
|
Posted: Tue Apr 13, 2010 3:12 pm Post subject: |
|
|
| Saric wrote: | | zaczac wrote: | | I have no use for programming actually find it quite boring..Just not something I want to learn. |
Then don't come crying into random spam asking for help. |
He was offering money for it, Also it's called RANDOM SPAM, he can post anything he pleases to. _________________
|
|
| Back to top |
|
 |
gogodr I post too much
Reputation: 125
Joined: 19 Dec 2006 Posts: 2041
|
Posted: Tue Apr 13, 2010 3:15 pm Post subject: |
|
|
I'll give you the algorithms and you make the programming :/
Example 1
Input
Enter a sequence of three numbers such as:"1 2 3" enter
Output
Input "1,2,3
The sequence is linear. The next three terms are : 4,5,6.
The sequence is fibonacci. The next three terms are 5,8,13.
The sequence is not exponential.
1 2 3
make them be valiables
a b c
a is the first input
b is the second
c is the third
Linear:
if b - a = c - b it is linear
next 3 terms:
(b-a) + c , 2(b-a) + c, 3(b-a) + c
Fibonacci:
if a+b=c it is Fibonacci
next 3 terms:
(b+c), b+2c, 2b+3c
Exponential:
if b/a = c/b it is exponential
next 3 terms:
b/a(c), (b/a)^2(c), (b/a)^3(c) |
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Tue Apr 13, 2010 3:34 pm Post subject: |
|
|
lol algorithms. This is a 5 minute assignment. 5$, take it or leave it  |
|
| Back to top |
|
 |
gogodr I post too much
Reputation: 125
Joined: 19 Dec 2006 Posts: 2041
|
Posted: Tue Apr 13, 2010 3:35 pm Post subject: |
|
|
lol with the algorithms its just a minute thing to write down it in code :/
let him do his homework. |
|
| Back to top |
|
 |
|