如何在 C# 中将格式化数字打印到屏幕上?

发布于 2024-10-17 17:52:02 字数 264 浏览 2 评论 0原文

我正在尝试在 C# 中格式化矩阵,如下所示:

 1  2
10 11

我可以在 C 中使用以下命令来执行此操作:

printf("%2d",number)

C# 中是否有类似的命令?我尝试过 String.FormatToString,但我不知道如何让它们做我想要的事情。我刚刚开始使用 C#,所以任何建议将不胜感激。

I am trying to format a matrix in C# as shown:

 1  2
10 11

I could do this in C using:

printf("%2d",number)

Is there a similar command in C#? I have tried String.Format and ToString, but I can't figure out how to make them do what I want. I am just starting out in C#, so any suggestions would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦醒灬来后我 2024-10-24 17:52:02

这相当于 C# 中 printf 的 %2d

string s=string.Format("{0,2}",number);

逗号后面的数字如果是正数则右对齐,如果负数则左对齐,达到指定的总字符数(包括 number< /code> 本身)。

以下是有用网站的链接,其中包含有关如何格式化整数的指南以各种方式可以帮助您解决其余问题。

This is equivalent to a %2d for printf, in C#:

string s=string.Format("{0,2}",number);

The number after the comma right aligns if positive and left aligns if negative, to the specified number of total characters (including the number itself).

Here is a link to a helpful site with a guide on how to format integers in various ways that may help you with the rest of your problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文