标签:c style class blog code java
1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 //制表符是8个字符,当在一个制表符开始的位置(明白什么位置是制表符开始的位置)输出一个字符串时, 6 //如果字符串不到8个字符,加一个"\t",会补充空格,达到一个制表符 7 char res[] = "hello\tworld"; 8 cout << res << endl;//不满8个字符,会用空格填充达到8个字符 9 10 cout << "hello___world" << endl;//中间3个下划线_ 11 12 char res2[] = "helloworld\thello";//开始第一个字符串10个字符,加一个制表符,会补充6个空格 13 //完成第二个制表符 14 cout << res2 << endl; 15 cout << "helloworld______hello" << endl;//中间6个下划线_ 16 return 0; 17 }
运行结果:
标签:c style class blog code java
原文地址:http://www.cnblogs.com/wanghui390/p/3764425.html