online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *******************************************************************************/ public class Main { public static int fac2(int n) { if (n>=1) { int result = 1; for (int i=1; i<=n; i=i+2) { result = result * i; } if(result<0)return -1; return result; } return -1; } public static void main(String[] args) { int n = 8907876 ; System.out.println("fac(" + n + ") = " + fac2(n)); } }

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