• 2021-04-14
    下面程序是计算5的阶乘,请在横线处填空,使用程序功能完整。
    public class Factorial{
    public static void main(String[] args) {
    int n=5;
    long result=1;
    do { ;
    ;
    }
    System.out.println("5的阶乘为: "+result);
    }
    }