部分编程题
可以用逗号做标识符,但是逗号左右两边不可以是相同的字符串例如aq,aq是不行的。
斐波那契数列。
迭代。
public static int qw(int n) {
if(n<=0) return 0;
if(n==1||n==2)return 1;
int fir=1;int sec=1;int thi=0;
for(int i=3;i<=n;i++) {thi=fir+sec;fir=sec;sec=thi;}
return thi;
};
递归。
static int qw(int n) {
if(n==1||n==2)return 1;
return qw(n-1)+qw(n-2);
}
求建国距今天数。
Date dw=new Date();
GregorianCalendar gr=new GregorianCalendar();
gr.set(2010,10,1);
System.out.println(Math.abs(gr.getTime().getTime()-dw.getTime())/1000/60/60/24);
以前的车马很慢,果子很甜