如何在 C# 中将格式化数字打印到屏幕上?
我正在尝试在 C# 中格式化矩阵,如下所示:
1 2
10 11
我可以在 C 中使用以下命令来执行此操作:
printf("%2d",number)
C# 中是否有类似的命令?我尝试过 String.Format
和 ToString
,但我不知道如何让它们做我想要的事情。我刚刚开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这相当于 C# 中 printf 的
%2d
:逗号后面的数字如果是正数则右对齐,如果负数则左对齐,达到指定的总字符数(包括
number< /code> 本身)。
以下是有用网站的链接,其中包含有关如何格式化整数的指南以各种方式可以帮助您解决其余问题。
This is equivalent to a
%2d
for printf, in C#: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.