🔒 Closed Pa tulong po

Status
Not open for further replies.

Sorry, natagalan kumain pa at manual type codes mo haha di kasi kita gaano.
Pero eto temporary fix sa prob mo. Bale convert nalang yung user's input to string then iterate
Wait mo nalang mga master dito sa C++ for better and easy solution.


C++:
// Online C++ compiler to run C++ program online
#include <iostream>
#include <string>

using namespace std;

int main() {
    int sum = 0, number, individualNumber;
    cout << "Enter an Integer: ";
    cin >> number;
    cout << "The digits of " << number << " are: ";
  
    if (number < 0)
        number = number * -1;
  
    string n = to_string(number);
    for(int i = 0; i < n.length(); i++){
        cout << n[i] << ' ';
        individualNumber = number % 10;
        number /= 10;
        sum = sum + individualNumber;
    }
  
    cout << "\nThe sum of the digits is: " << sum << endl;
  
    return 0;
}

Code:
Enter an Integer: 1234
The digits of 1234 are: 1 2 3 4
The sum of the digits is: 10
 
Sorry, natagalan kumain pa at manual type codes mo haha di kasi kita gaano.
Pero eto temporary fix sa prob mo. Bale convert nalang yung user's input to string then iterate
Wait mo nalang mga master dito sa C++ for better and easy solution.


C++:
// Online C++ compiler to run C++ program online
#include <iostream>
#include <string>

using namespace std;

int main() {
    int sum = 0, number, individualNumber;
    cout << "Enter an Integer: ";
    cin >> number;
    cout << "The digits of " << number << " are: ";
 
    if (number < 0)
        number = number * -1;
 
    string n = to_string(number);
    for(int i = 0; i < n.length(); i++){
        cout << n[i] << ' ';
        individualNumber = number % 10;
        number /= 10;
        sum = sum + individualNumber;
    }
 
    cout << "\nThe sum of the digits is: " << sum << endl;
 
    return 0;
}

Code:
Enter an Integer: 1234
The digits of 1234 are: 1 2 3 4
The sum of the digits is: 10
Maraming salamat po, laking tulong napo nito hehe
 
Status
Not open for further replies.

About this Thread

  • 7
    Replies
  • 745
    Views
  • 2
    Participants
Last reply from:
zackmark29

Trending Topics

Online now

Members online
1,206
Guests online
3,035
Total visitors
4,241

Forum statistics

Threads
2,308,126
Posts
29,183,395
Members
1,191,850
Latest member
assassin 74
Back
Top