第一题:
public class Count
{ static final int LEN=50; public static void main(String args[]) { int i; long count=0; for(i=1;i<=LEN;i++) { if(i%2==0) count+= (-Math.pow(i,2)); else count+=Math.pow(i,2); } System.out.println("count is "+count); }
}
第二题:
public class List
{ public static void main(String args[]) { int i,j; for(i=1;i<=9;i++) { for(j=1;j<=9;j++) { System.out.print(i+"*"+j+"="+i*j+""); } System.out.print("\n"); } }
}