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

Trending Topics

Online now

Members online
1,198
Guests online
2,192
Total visitors
3,390

Forum statistics

Threads
2,292,805
Posts
29,079,492
Members
1,209,509
Latest member
dingdoh34
Back
Top