2 #include <iomanip>
3 using namespace std;
4
5 int main()
6 {
7 int x=1;
8 // 结果是多少 ?递增?????/
9 ++x;
10 cout<<x<<endl;
11 return 0;
12 }
13
程序二
2 #include <iomanip>
3 using namespace std;
4
5 int main()
6 {
7 int x=1;
8 // 结果是多少 ?递增?????/
9
10 ++x;
11 cout<<x<<endl;
12 return 0;
13 }
14
字符串
|
转义后的含义
|
??=
|
#
|
??(
|
[
|
??)
|
]
|
??/
|
\
|
??<
|
{
|
??>
|
}
|
??'
|
^
|
??!
|
|
|
??-
|
~
|