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 Java

4 Answers

0 votes
public class MyClass {
    public static void main(String args[]) {
      int n = 87315;
      
      System.out.println((int)Math.log10(n));
      System.out.println((int)Math.pow(10, (int)Math.log10(n)));
        
      n = n % (int)Math.pow(10, (int)Math.log10(n));

      System.out.println(n);
    }
}


/*
run:

4
10000
7315

*/

 



answered Jun 4, 2020 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
      int n = 87315;
      
      String s = Integer.toString(n);
      n = Integer.parseInt(s.substring(1));
        
      System.out.println(n);
    }
}


/*
run:

7315

*/

 



answered Jun 4, 2020 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
      int n = 87315;
      
      n = Integer.parseInt(Integer.toString(n).substring(1));
        
      System.out.println(n);
    }
}



/*
run:

7315

*/

 



answered Jun 4, 2020 by avibootz
0 votes
public class MyClass {
    private static int remove_first_digit(int num) {
    	int total = (int)Math.log10(num); // total - 1 = 6
    
    	int first_digit = num / (int)Math.pow(10, (total));
    
    	return num - first_digit * (int)Math.pow(10, (total));
    }
    
    public static void main(String args[]) {
      	int n = 8405796;

	    n = remove_first_digit(n);

	    System.out.print(n);
    }
}





/*
run:
     
405796
    
*/

 



answered Jan 12, 2024 by avibootz

Related questions

1 answer 147 views
1 answer 118 views
1 answer 139 views
1 answer 149 views
1 answer 127 views
2 answers 174 views
2 answers 282 views
...