主题:新手求指教,一个很简单的程序!!!
public class Factorial{
public static void main(String args[])
{
int i=1;
int count=0;
for(int j=1;j<=5;j++)
{
i *= j;
count += i;
}
}
//System.out.println( "count="+count );
}
在DOS窗口下编译提示注释的那一行出错了,可是我真心不知道错在哪里了,求指教!!!
public static void main(String args[])
{
int i=1;
int count=0;
for(int j=1;j<=5;j++)
{
i *= j;
count += i;
}
}
//System.out.println( "count="+count );
}
在DOS窗口下编译提示注释的那一行出错了,可是我真心不知道错在哪里了,求指教!!!