Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to convert an int number into a vector of int digits in C++

1 Answer

0 votes
#include <algorithm>
#include <iostream>
#include <vector>

std::vector<int> convertToDigits(int number) {
    std::vector<int> digits;
    
    if (number < 0) {
        number = -number;
    }

    // Extract digits from the number
    while (number > 0) {
        digits.push_back(number % 10);
        number /= 10;
    }

    // Reverse the vector to get the correct order
    std::reverse(digits.begin(), digits.end());

    return digits;
}

int main() {
    int number = 12345;
    
    std::vector<int> digits = convertToDigits(number);

    for (int digit : digits) {
        std::cout << digit << " ";
    }
}

  
  
/*
run:
        
1 2 3 4 5 
   
*/

 



answered Jan 6, 2025 by avibootz

Related questions

2 answers 76 views
2 answers 232 views
2 answers 124 views
2 answers 97 views
1 answer 103 views
1 answer 86 views
...