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 161 views
1 answer 136 views
1 answer 159 views
1 answer 162 views
1 answer 140 views
2 answers 187 views
2 answers 297 views
...