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 C#

2 Answers

0 votes
using System;
 
public class program
{
    public static string AddLeadingZerosToNegativeNumber(int num, int digits) {
        bool negative = false;

        if (num < 0) {
            num *= -1;
            negative = true;
        }

        string s = num.ToString();

        while (s.Length < digits) {
            s = "0" + s;
        }

        if (negative) {
            return "-" + s;
        }

        return s;
    }

    public static void Main(string[] args)
    {
        int num = -5;

        Console.WriteLine(AddLeadingZerosToNegativeNumber(num, 3));
    }
}


 
 
/*
run:
 
-005
 
*/

 



answered Apr 16, 2024 by avibootz
0 votes
using System;
 
public class program
{
    public static void Main(string[] args)
    {
        int num = -5;
        string str = num.ToString("000");

        Console.WriteLine(str);
    }
}


 
 
/*
run:
 
-005
 
*/

 



answered Apr 16, 2024 by avibootz

Related questions

2 answers 136 views
3 answers 165 views
165 views asked Jul 1, 2023 by avibootz
2 answers 136 views
1 answer 111 views
1 answer 122 views
2 answers 133 views
1 answer 110 views
...