/*第4题:
编写函数,函数功能是:统计整数n的各位上出现数字1、2、3的次数。要求输入输出均在主函数中完成。
样例输入:123114350
样例输出:3 1 2
*/
#include
using namespace std;
void t(int n, int& x, int& y, int& z)
{
int m;
x = 0;
y = 0;
z = 0;
while (n != 0)
{
m = n % 10;
n = n / 10;
if (m == 1)
x++;
else if (m == 2)
y++;
else if (m == 3)
z++;
}
}
int main()
{
int n, x, y, z;
cin >> n;
t(n, x, y, z);
cout << x << " " << y << " " << z << endl;
}