题解列表

筛选

拆分位数 (C语言代码)

摘要:解题思路:#include<stdio.h>int main(){ int a,b,c,x; scanf("%d",&x); a = x%10;           \\将x取10的余数,余数一定是个……