求高手帮帮忙~~!
用JAVA语言编学下列题目:
1,计算:1(2)-2(2)+3(2)-4(2)+..............+47(2)-48(2)+49(2)-50(2)的总和(注意:后每个数的后面的(2)是表示平方)
2.试打印九九乘法表!!
----------------解决方案--------------------------------------------------------
用for循环
----------------解决方案--------------------------------------------------------
第一题:
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");
}
}
}
----------------解决方案--------------------------------------------------------
谢谢~~~以后多多请教,,我刚学JAVA,,是Borland公司的,,这学期还要认证呢~~以前没有学过C#,现在觉得JAVA有点抽象啊~~~
----------------解决方案--------------------------------------------------------