5!

求5!

1 <%  int jx = 1;
2     for(int i = 1; i <= 5; i++){
3         jx *= i;
4     }
5 %>
6 5!=<%= jx %>
原文地址:https://www.cnblogs.com/ouyangtangfeng99/p/5609226.html