gpt4 book ai didi

c++ - 如何从输出中剪切尾随空格

转载 作者:太空宇宙 更新时间:2023-11-04 16:11:40 25 4
gpt4 key购买 nike

好的,阅读 this question我已经完全理解 \b\n 的作用。我仍然不知道如何执行以下操作:

我需要打印由空格分隔的数组的所有元素,然后对该数组执行一些操作并打印另一组数组中的所有元素,多次,每组由换行符分隔。像这样:

x[0] x[1] x[2] x[n]
x[0] x[1] x[2] x[n]
x[0] x[1] x[2] x[n]
(etc.)

这是我的代码:

std::printf("%f ",t);
for(int i=0;i<N;i++) {
std::printf("%f ", x[i]);
}
std::printf("\b\n");

然而,这会在每行的末尾留下一个尾随空格。我怎样才能使输出 "x[0] x[1] x[n]\nx[0] x[1] x[n]\n(...)" 而不是“x[0] x[1] x[n]\nx[0] x[1] x[n]\n(...)”?

最佳答案

我会使用 infix_ostream_iterator .

使用它,代码变得相当简单:

#include "infix_iterator"

std::cout << t << " ";
std::copy(x.begin(), x.end(), infix_ostream_iterator<double>(std::cout, " "));
std::cout << "\n";

关于c++ - 如何从输出中剪切尾随空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27994780/

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