数的拆分,是编程最基础的技巧之一。其程序如下图:
#include <bits/stdc++.h>
using namespace std;
int main()
{
int bf,x;
cin>>bf;
while(bf>0)
{
x=bf%10;
cout<<x<<" ";
bf/=10;
}
return 0;
}
我们可以将它用在各种类型的题中,它会帮我们解决部分题目,也能为我们编写程序提供便利。