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

51,772 answers

573 users

How to add leading zeros to negative number in Java

2 Answers

0 votes
public class MyClass {
    public static String AddLeadingZerosToNegativeNumber(int num, int digits) {
        boolean negative = false;
        
        if (num < 0) {
            num *= -1;
            negative = true;
        }
        
        String s = Integer.toString(num);
        
        while (s.length() < digits) {
            s = "0" + s;
        }
        
        if (negative) {
            return "-" + s;
        }
        
        return s;
    }

    public static void main(String args[]) {
        int num = -5;

        System.out.println(AddLeadingZerosToNegativeNumber(num, 3));
    }
}
 
 
 
/*
run:
 
-005
 
*/

 



answered Jul 1, 2023 by avibootz
0 votes
public class MyClass {
    public static void main(String args[]) {
        int num = -5;
 
        String s = String.format("%04d", num);
        
        System.out.println(s);
    }
}
  
  
  
/*
run:
  
-005
  
*/

 



answered Apr 16, 2024 by avibootz

Related questions

2 answers 123 views
1 answer 122 views
1 answer 140 views
140 views asked Jun 30, 2023 by avibootz
2 answers 117 views
2 answers 133 views
1 answer 110 views
3 answers 166 views
...