摘要:
Variables: capitalized, and in italics, e.g., X Values of variables: lower case, and in italics, e.g., X = x Sets: capitalized, and in boldface, e.g., 阅读全文
摘要:
今天从SVN上把系统导入本地发生了异常,问题如下: java.math.BigInteger cannot be cast to java.lang.Long 百度一番后发现是因为使用Mysql8.0后依然使用5.0的Jar包连接导致直接报错java.math.BigInteger cannot b 阅读全文
摘要:
public class Ninetheen { /*求1+2!+3!+...+20!的和*/ public static void main(String[] args){ int i,j; long sum=0,jiecheng=1; for(i=1;i<=20;i++){ jiecheng=1; for(j=1;j<=i;j++) jiecheng=jiecheng*j; sum=su... 阅读全文