Answer to Question #22112 in C++ for Elgun Cebrayilov

Question #22112
The positive integer number N is given. We subtract from this number the sum of its digits. From the received number we soon subtract the sum of its digits and so on. This operation continues until the number is positive. How many times this operation will be repeated?
1
Expert's answer
2013-01-16T10:13:14-0500
#include <iostream>
#include <vector>
#include <fstream>
#include <time.h>
#include <string>
using namespace std;
int main(){
int number;
cout<<"Enter number";
cin>>number;
int i;
for (i = 0; 1 ; i++){
char& a[100];
itoa(number,a,10);
int b = 0;
for (int j = 0 ; a[j] != '\0' ; j++){
b += int(a[j]) - 48;
}
number -= b;
}

system("pause");
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS