Computer Science, asked by kaliaanshul123, 13 hours ago

write a program in c++ using switch case to find fabonacci series​

Answers

Answered by tejaswi2009
1

Answer:

while ((choice = getchar())!= EOF){

switch (choice){

case '1':

// calculate Fibonacci sequence

break;

case '2':

return 0;

}

Similar questions