gpt4 book ai didi

c++ - 在表格中格式化输出,C++

转载 作者:可可西里 更新时间:2023-11-01 17:14:07 37 4
gpt4 key购买 nike

如何在 C++ 中将表中的数据输出到控制台?在 C# 中有一个关于此的问题,但我在 C++ 中需要它。

这,除了在 C++ 中:How To: Best way to draw table in console app (C#)

最佳答案

这是 iomanip 的一小部分示例:

#include <iostream>
#include <iomanip>

int main(int argc, char** argv) {
std::cout << std::setw(20) << std::right << "Hi there!" << std::endl;
std::cout << std::setw(20) << std::right << "shorter" << std::endl;
return 0;
}

您还可以执行其他操作,例如设置 float 的精度、在使用 setw 时更改用作填充的字符、以 10 以外的其他方式输出数字,等等。

http://cplusplus.com/reference/iostream/manipulators/

关于c++ - 在表格中格式化输出,C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6755250/

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