How to delete the first digit from a number in C++

2 Answers

0 votes
#include <iostream>
#include <sstream> 

int main() {
    int n = 853271;
    auto s = std::to_string(n);
    
    s[0] = '0';
    std::stringstream ss(s); 
    ss >> n;
     
    std::cout << n;
}



/*
run:

53271

*/

 



answered Jun 3, 2020 by avibootz
0 votes
#include <iostream>
#include <cmath> 
 
int main() {
    int n = 853271;
    
    std::cout << (int)log10(n) << "\n";
    std::cout << (int)pow(10, (int)log10(n)) << "\n";
          
    n = n % (int)pow(10, (int)log10(n));
      
    std::cout << n;
}
 
 
 
 
/*
run:
 
5
100000
53271
 
*/

 



answered Jun 4, 2020 by avibootz

Related questions

2 answers 247 views
1 answer 169 views
1 answer 179 views
1 answer 158 views
2 answers 205 views
1 answer 172 views
4 answers 305 views
...