鳗鱼高跟鞋

文章
3
资源
0
加入时间
2年10月24天

sum of power——大数取模

Think: 1大数取模 2相似题目——可考虑快速幂优化SDUT题目链接sum of power Time Limit: 1000MS Memory Limit: 65536KBProblem Description Calculate mod (1000000000+7) for given n,m.Input Input contains two integers n,m(1≤n≤1

java的BigDecimal数据类型

//前提为a、b均不能为nullif(a.compareTo(b) == -1){ System.out.println("a小于b"); }if(a.compareTo(b) == 0){ System.out.println("a等于b"); }if(a.compareTo(b) == 1){ System.out.println("a大于b"); }if(a.compareTo(b) > -1){ System.ou