数字经典问题

给出一个正整数 1.输出是几位数 2.依次打印各位数字 3.逆序输出这个数字 ** 在这里插入代码片 #include<stdio.h> #include<math.h> int A(int n); int B(int n); int C(int n); int main() { printf(“这个数字是%d位数字\n”,A(12345)); B(12345); C(12345); } int
相关文章
相关标签/搜索