单项选择题设int x=7,则~x的值是( )。
单项选择题有下列程序: #include stdio.h main() { int x=0; int y=0; while(x<7&&++y) { y--; x++;} printf( %d,%d ,y,x); } 程序的输出结果是( )。