1445: 求解出n以内所有能被5整除的正整数的乘积。
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:8614
Solved:4921
Description
求解出n以内(包含n)所有能被5整除的正整数数的乘积。
Input
输入包含多个样例,每个样例一个正整数n,占一行。。读取到文件结尾。输入的n不超过100.
// 输入格式
while (scanf("%d", &n) != EOF) {
// todo
}
Output
对于每个样例n,输出n以内(包含n)所有能被n整出的正整数的乘积。每个输出占一行。
//输出格式
printf("%d\n", ans);
Sample Input Copy
5
12
19
Sample Output Copy
5
50
750