我是靠谱客的博主 高挑外套,最近开发中收集的这篇文章主要介绍C++ 反斜杠( \ )用处\n\t\" and \'\\,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

n

n为换行符, 可被endl代替


下面代码没有使用任何换行符

输出结果为

123456

#include <bits/stdc++.h>
using namespace std;
int main(){
cout << 123;
cout << 456;
return 0;
}

下面代码用了n, endl换行符

输出结果为

123

456

#include <bits/stdc++.h>
using namespace std;
int main(){
cout << 123 << "n";
cout << 456;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << 123 << endl;
cout << 456;
return 0;
}

t

t为tab, 可输出4个空格


下面代码用了t

输出结果为

123     456

#include <bits/stdc++.h>
using namespace std;
int main(){
cout << 123 << "t" << 456;
return 0;
}

" and '

"可输出单个双引号

'可输出单个单引号

下面代码用了"和'

输出结果为

"and'

#include <bits/stdc++.h>
using namespace std;
int main(){
cout << """ << "and" << "'";
return 0;
}

\

\可输出一个反斜杠

下面代码用了\

输出结果为

#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "\";
return 0;
}

更多内容见表格

b删掉字符串前方的一个字母
v换行,并在第二行前边加一个tab

最后

以上就是高挑外套为你收集整理的C++ 反斜杠( \ )用处\n\t\" and \'\\的全部内容,希望文章能够帮你解决C++ 反斜杠( \ )用处\n\t\" and \'\\所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部