梁一菲 • 1个月前
int x, y; int sum = 1; cin >> x >> y; for (int i = x; i <= y; i++) { sum = sum * i; } cout << sum ; return 0;
}
评论:
请先登录,才能进行评论