c++ setw使用 以及 markdown中 highlight 加亮代码
主题
#c++ setw使用 以及 markdown中 highlight 加亮代码
使用setw(n)设置输出的宽度,默认是右对齐,
示例代码:
std::cout << std::setw(5) << "1" << std::endl;
std::cout << std::setw(5) << "10" << std::endl;
std::cout << std::setw(5) << "100" << std::endl;
通过left可以设置左对齐
示例代码:
std::cout << std::left << std::setw(5) << "1" << std::endl;
std::cout << std::left << std::setw(5) << "10" << std::endl;
std::cout << std::left << std::setw(5) << "100" << std::endl;
如下是用highlight高亮后的代码:
未用highlight高亮的python代码:
import sys
def func1():
return 0
sys.exit(200)
highlight高亮的python代码: