2)
#include <iostream>
using namespace std;
int main()
{
int x;
cin>>x;
cout<<(x/100)%10+((x/10)%10)+x%10;
return 0;
}
3)
int a, b, c, d, e, f;
a=(x/1000000)%10;
b=(x/100000)%10;
c=(x/1000)%10;
d=(x/100)%10;
e=(x/10)%10;
f=x%10;
cout<<"Сумма первых трех цифр равна:"<<a+b+c<<endl;
cout<<"Сумма последних трех цифр равна:"<<d+e+f;
2)
#include <iostream>
using namespace std;
int main()
{
int x;
cin>>x;
cout<<(x/100)%10+((x/10)%10)+x%10;
return 0;
}
3)
#include <iostream>
using namespace std;
int main()
{
int x;
cin>>x;
int a, b, c, d, e, f;
a=(x/1000000)%10;
b=(x/100000)%10;
c=(x/1000)%10;
d=(x/100)%10;
e=(x/10)%10;
f=x%10;
cout<<"Сумма первых трех цифр равна:"<<a+b+c<<endl;
cout<<"Сумма последних трех цифр равна:"<<d+e+f;
return 0;