Why time limit exceeds?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why time limit exceeds??

/*Wap to print sum and product of digits of integer */ #include <iostream> using namespace std; int main() { int n,sum=0,p=1; cout <<"Enter any integer \n"; cin>>n; for(int i=n;i!=0;i/10) { i=i%10; sum +=i; p*=i; } cout<<"Sum of digits :"<<sum<<"\n"<<"Product of digits : "<<p; return 0; }

3rd Aug 2019, 9:34 AM
Sahil Dahiya
Sahil Dahiya - avatar
1 Answer
+ 4
In the for loop, you should use i/=10 instead of i/10.
3rd Aug 2019, 9:37 AM
你知道規則,我也是
你知道規則,我也是 - avatar