C++与C的输出对齐

Posted LaoJiu_

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++与C的输出对齐相关的知识,希望对你有一定的参考价值。

首先看C++的:

C++输出对齐需要包含头文件<iomanip>,当然对齐方式也分为左右两种,直接看代码更好理解。

#include <iostream>
#include<iomanip>
using namespace std;

int main()

	int a = 9999;
	int b = 999;
	int c = 99;

	//默认右对齐
	cout << "默认右对齐为:\\n";
	cout << setw(6) << a << endl;
	cout << setw(6) << b << endl;
	cout << setw(6) << c << endl;

	//现在改为左对齐
	cout << "\\n改为左对齐后为:\\n";
	cout << left << setw(6) << a << endl;
	cout << left << setw(6) << b << endl;
	cout << left << setw(6) << c << endl;

	return 0;
输出如下:



你可能觉得这样的对齐不美观,是否能在对齐多余的空地填充字符呢?这当然是可以的。

#include <iostream>
#include<iomanip>
using namespace std;

int main()

	int a = 9999;
	int b = 999;
	int c = 99;

	//默认右对齐
	cout << "默认右对齐为:\\n";
	cout.fill('#');//填充字符'#'
	cout << setw(6) << a << endl;
	cout << setw(6) << b << endl;
	cout << setw(6) << c << endl;

	//现在改为左对齐
	cout << "\\n改为左对齐后为:\\n";
	cout.fill(' ');//取消字符填充
	cout << left << setw(6) << a << endl;
	cout << left << setw(6) << b << endl;
	cout << left << setw(6) << c << endl;

	return 0;
输出如下:




注意,fill一旦设置,程序中一直有效,除非使用fill(' ')取消设置。

接下来再看看C语言的:

#include<iostream>
using namespace std;

int main()

	int a = 9999;
	int b = 999;
	int c = 99;

	//默认右对齐
	printf("默认右对齐为:\\n");
	printf("%6d\\n", a);
	printf("%6d\\n", b);
	printf("%6d\\n", c);

	//现在改为左对齐
	printf("\\n改为左对齐后为:\\n");
	printf("%-6d\\n", a);
	printf("%-6d\\n", b);
	printf("%-6d\\n", c);

	return 0;

输出如下:




以上是关于C++与C的输出对齐的主要内容,如果未能解决你的问题,请参考以下文章

华为OD机试 2023最新 箱子之字形摆放(C++ 100%)

c++中怎么控制左右对齐

华为机试真题 C++ 实现箱子之字形摆放2022.11 Q4 新题

C语言输出如何右对齐?

C语言的输出怎么实现右对齐?

C语言输出如何右对齐