转义字符 示例 #include <iostream> using namespace std; int main() { //转换字符 //换行符\n cout<<"hello world\n"; //反斜杠 \\ cout<<"\\"<<endl; //水平制表符 \t 作用:可以整齐输出数据 cout<<"aaa\thello world"<<endl; } }