C++中cout<<x+ : :x<<end1是什么意思?

如体
2025-04-02 06:39:27
推荐回答(2个)
回答(1):

首先,你打错字了:
应该是cout<COUT是输出之义,就是说输出“x+::x”这个结果

回答(2):

看下面例子

int x=1;
{
int x=2;
cout<}
结果:3