发布网友 发布时间:2024-09-06 15:55
共3个回答
热心网友 时间:2024-11-12 20:28
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int s32putIn, lop;
while(1)
{
char strPutIn[32] = {0};
printf("*********************************\n");
printf("请输入正整数:\n");
scanf("%d", &s32putIn);
printf("你输入的数据为: %d\n", s32putIn);
if(s32putIn > 32767 || s32putIn < 0)
printf("你输入的数据错误\n");
itoa(s32putIn, strPutIn, 10);
printf("逆序之后输出为: ");
for(lop=strlen(strPutIn)-1; lop>=0; lop--)
printf("%c", strPutIn[lop]);
printf("\n");
}
return 0;
}
程序执行结果如下:
可以循环的输入输出。
热心网友 时间:2024-11-12 20:30
#include <stdio.h>热心网友 时间:2024-11-12 20:29
#include <stdio.h>