x=5y=x++输出y的值的完整格式怎么写?
x = 6y = 5
#include <iostream> using namespace std; int main() { int x =5; int y = x++; cout<<"y="<<y; return 0; }