0
I wanted to make Fibonacci series but it is totally different. Please help me to fix this problem.
Fibonacci Series https://code.sololearn.com/c4lL4es8Hy9M/?ref=app
2 Answers
+ 4
Using double quotes around number will make it string.
int a = 0;
System.out. println("a");
// prints a
System.out. println(a);
// prints 0
Now try to fix this problem.
+ 1
Thanks a lot..