online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("How many numbers >10: "); int n = input.nextInt(); while (n <= 10) { System.out.println("How many numbers >10: "); n = input.nextInt(); } System.out.println("\nFibonacci Series: "); int n1 = 0,n2=1; //printing 0 and 1 System.out.print(n1+" "+n2); resursiveFibonacci(n1, n2, n-2); System.out.println(""); } public static void resursiveFibonacci(int n1, int n2, int c) { int n3; if (c > 0) { n3 = n1 + n2; n1 = n2; n2 = n3; System.out.print(" " + n3); resursiveFibonacci(n1,n2,c - 1); } } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue