把程序编写的代码写出来。输出y的值。别太复杂。
#include<iostream> using namespace std; int main(){ int y; int t=1; t+=9; y=t++; cout<<y; return 0; }