解题思路:
注意事项:
参考代码:
#include <cstdio>
#include <algorithm>
using namespace std;
int main()
{
int n;
int i,j,k,l;
scanf("%d",&n);
i=n%10;
j=n/10%10;
k=n/100%10;
l=n/1000;
printf("%d %d %d %d",l,k,j,i);
return 0;
}
0.0分
2 人评分
众数问题 (C语言代码)浏览:3568 |
C语言训练-立方和不等式 (C语言代码)浏览:779 |
矩阵乘法 (C++代码)浏览:1662 |
上车人数 (C语言代码)浏览:816 |
拆分位数 (C语言代码)浏览:1361 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:827 |
幸运数 (C++代码)浏览:1309 |
C语言程序设计教程(第三版)课后习题12.1 (C语言代码)浏览:689 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:594 |
C语言训练-字符串正反连接 (C语言代码)浏览:653 |