🔒 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
  • 747
    Views
  • 2
    Participants
Last reply from:
zackmark29

Trending Topics

Online now

Members online
648
Guests online
2,134
Total visitors
2,782

Forum statistics

Threads
2,321,578
Posts
29,211,695
Members
1,178,976
Latest member
jepzryo
Back
Top