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,926 questions

51,859 answers

573 users

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 226 views
1 answer 139 views
1 answer 148 views
1 answer 126 views
2 answers 174 views
1 answer 147 views
4 answers 251 views
...