gpt4 book ai didi

c - 输出保持在同一列,忽略 "-"(负)

转载 作者:行者123 更新时间:2023-11-30 15:22:12 27 4
gpt4 key购买 nike

这是我期望的输出

  x        |x|
1.2 1.2
-2.3 2.3
3.4 3.4

但我一直收到这个:

  x        |x|
1.2 1.2
-2.3 2.3
3.4 3.4

这是我的代码部分:

  printf("  x        |x|\n");
for (i = 1; i <= n; i++)
{
printf(" %.1f %.1f\n", array[i], array1[i]);
}

我该如何更改它?

最佳答案

您应该在 %.1f 中的点之前指定一个数字,以显示包括“-”在内的所有数字,例如:

printf("%3.1f",array[i]);

将导致:

 x             |x|
1.2 1.2
-2.3 2.3
3.4 3.4

这意味着一个数字应该占据屏幕中的 3 个位置。抱歉英语不好。

关于c - 输出保持在同一列,忽略 "-"(负),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29292621/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com