第7周作业1-循环大战for

import javax.swing.*;

public class FactorialTest2 {
	public static void main (String args[])
	{    
		int n;  
		String s=(String)JOptionPane.showInputDialog(null,"请输入整数n","1到n的阶乘",    
				JOptionPane.PLAIN_MESSAGE,null,null,null);    
		n=Integer.parseInt(s);

		{
			long i,j,k;

			for(i=1,j=1,k=1;j<=n;j++)
			{
				k*=j;
			}
			System.out.println(n+"!="+k);

		}
	}
}

第7周作业1-循环大战for_第1张图片


第7周作业1-循环大战for_第2张图片

由于时间关系,代码中的注释就不著了

你可能感兴趣的:(第7周作业1-循环大战for)