#include main() { int i, n; double f; printf("Input Number\n"); scanf( "%d", &n ); 「※1」( n>=0 ) { f=1.0; i=1; 「※2」( i<=n ) { f=f*i; 「※3」 } printf("Factorial %d = %f\n",n,f); }else{ printf("Negative Number Not Allowed\n"); } }