Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
int j=5; std::cout << ++j <<" " << j++ <<" "<< ++j;
为什么这个程序会给出以下输出:
8 6 8