第33014题 程序题
编写程序打印指定区间内可被给定因子整除的整数

编写一个程序,输入三个正整数minmaxfactor,对于minmax之间的每一个整数(包括minmax),如果它能被factor整除,就将其打印出来。

输入描述 输入只有一行,包括三个整数minmaxfactor

输出描述 输出只有一行,包括若干个整数,数与数之间用空格隔开。

输入样例1

1 10 3

输出样例1

3 6 9
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
编辑模式
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析