如果输入为5,则输出从5到15。
#include <stdio.h>
int main(void)
{
int input;
int i = 0;
printf("Enter an integer: ");
scanf("%d", &input);
while (i <= 10)
{
printf("%d/n", input + i);
i++;
}
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266548.html