使用c语言实现将三位正整数逆序输出
连续求余输出即可
#include <stdio.h> int main() { int a; scanf("%d",&a); while(a>0) { printf("%d",a%10); a = a/10; } }