2021年3月4日
摘要: #include<stdio.h> #include<stdlib.h> int main() { int a, i,s; scanf("%d", &a); i = 1; s = 1; while (i <= a) { s = s * i; i++; } printf("%d", s); retur 阅读全文
posted @ 2021-03-04 17:16 ScottJS 阅读(1183) 评论(0) 推荐(0)