void print(int a, int b, int c)
{
if (a <= b && c > 0)
{
for (a; a <= b; a += c)
{
printf("%d ", a);
}
}
else if (a >= b && c < 0)
{
for (a; a >= b; a += c)
{
printf("%d ", a);
}
}
else
printf("Input Error!\n");
// begin:开始点 end:结束点 step:步数
void function(int begin, int end, int step)
{
// b += step:表示每次走几步,并且保存到b中输出。
for (int b = begin; b <= end; b += step) {
printf("%d\t", b);
}
}