Відповідь:
Пояснення:
#include <iostream>
using namespace std;
int main()
{
int ed, des, sot, hound;
int i;
for ( i=1990; i<9999; i++)
ed = i%10;
des = i%100/10;
sot = i%1000/100;
hound = i/1000;
if (ed+des+sot+hound == ed*des*sot*hound)
cout<<i<<"\n";
}
return 0;
Відповідь:
Пояснення:
#include <iostream>
using namespace std;
int main()
{
int ed, des, sot, hound;
int i;
for ( i=1990; i<9999; i++)
{
ed = i%10;
des = i%100/10;
sot = i%1000/100;
hound = i/1000;
if (ed+des+sot+hound == ed*des*sot*hound)
cout<<i<<"\n";
}
return 0;
}