#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Rus");
int d,a,s=0,p=1;
cin >> a;
cout << "Число:" << a << endl;
for (int i = 1; i <= 3; i++) {
d = a % 10;
a /= 10;
s += d;
p *= d;
}
cout << "Сумма:" << s << endl;;
cout << "Произведение:" << p << endl;;
Объяснение:
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "Rus");
int d,a,s=0,p=1;
cin >> a;
cout << "Число:" << a << endl;
for (int i = 1; i <= 3; i++) {
d = a % 10;
a /= 10;
s += d;
p *= d;
}
cout << "Сумма:" << s << endl;;
cout << "Произведение:" << p << endl;;
}
Объяснение: