1215: 整除式 [2+]
[Creator : ]
Description
输入正整数n, 输出所有形如 abcde / fghij = n 的表述式。
其中a~j恰好为数字0~9
Input
n
2<=n<=79
Output
从小到大输出该表达式
Sample Input
62
Sample Output
79546 / 01283 = 62
94736 / 01528 = 62
Hint
枚举,加剪枝
输入正整数n, 输出所有形如 abcde / fghij = n 的表述式。
其中a~j恰好为数字0~9
Input
n
2<=n<=79
Output
从小到大输出该表达式
Sample Input
62
Sample Output
79546 / 01283 = 62
94736 / 01528 = 62
Hint
枚举,加剪枝