i need to implement the fibonacci number sequence
here is an example output of the program:
Server:Waiting for connection
Server:Receive connection from client
Client:10
Server:Print 10 Fibonacci
Server:1 1 2 3 5 8 13 21 34 54
Client:1 1 2 3 5 8 13 21 34 54
if Client send value of 5, the output would be 1 1 2 3 5
here is an example output of the program:
Server:Waiting for connection
Server:Receive connection from client
Client:10
Server:Print 10 Fibonacci
Server:1 1 2 3 5 8 13 21 34 54
Client:1 1 2 3 5 8 13 21 34 54
if Client send value of 5, the output would be 1 1 2 3 5
Comment