在下列代码的横线处填写( ),可以使得输出是正整数 1234 各位数字的平方和。
int n =1234,s =0;
for ( ; n ; n/=10){
s += ______;
cout << s << endl;
}
n / 10
(n / 10) * (n / 10)
n % 10
(n % 10) * (n % 10)