解题思路:
注意事项:
参考代码:
import java.math.BigInteger; import java.util.Scanner; public class C1604 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { F(sc.nextInt()); } sc.close(); } private static void F(int n){ BigInteger sum = BigInteger.ONE; for(int i = 1; i <= n; i++){ sum = sum.multiply(BigInteger.valueOf(i)); } String str = sum.toString(); for(int i = str.length()-1; i >= 0; i--){ if(str.charAt(i) != '0'){ System.out.println(str.charAt(i)); break; } } } }
0.0分
0 人评分
C语言训练-素数问题 (C语言代码)浏览:1697 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:674 |
上车人数 (C语言代码)浏览:816 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:691 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
IP判断 (C语言代码)浏览:820 |
【矩阵】 (C++代码)浏览:999 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:383 |
用筛法求之N内的素数。 (C语言代码)浏览:595 |
模拟计算器 (C语言代码)浏览:2366 |