加载中...

技巧集合

数位拆分

while (n != 0) {// 数位拆分
	int num = n % 10;
	n /= 10;
}
posted @ 2023-02-25 08:35  ChuenSan  阅读(12)  评论(0编辑  收藏  举报