fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <iostream>
  9.  
  10. using namespace std;
  11.  
  12. int main() {
  13. int n,p, i;
  14. cin>>n;
  15. for(i=1;i<=n;i++)
  16. p=p*i;
  17. cout<<p;
  18.  
  19. return 0;
  20. }
  21.  
  22.  
  23.  
Success #stdin #stdout 0.01s 5288KB
stdin
5
stdout
Standard output is empty