摘要: #include <stdio.h> //数字位置的改变 int main() { int abc=123; //三步取一个: 走到(/右到左每一位*10)-锄(%每一位*10)-放(*10代表放在第二位2->20) int bac= abc/10%10*100 + abc/100%10*10 + 阅读全文
posted @ 2021-12-21 21:41 小庄的blog 阅读(112) 评论(0) 推荐(0) 编辑