Skip to content

Instantly share code, notes, and snippets.

@mojaie
Created December 5, 2011 07:47
Show Gist options
  • Save mojaie/1432755 to your computer and use it in GitHub Desktop.
Save mojaie/1432755 to your computer and use it in GitHub Desktop.
AOJ:0019
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
int n = scn.nextInt();
long x = 1;
for (int i = 2; i <= n; i++) {
x = x * i;
}
System.out.println(x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment