填空题

有以下程序:
#include <iostream>
using namespace std;
int main ( )
int X = 4;
do
cout<<(x-=3)<<end1;
while(--X);
return 0;
运行后的打印结果是 【6】

【参考答案】

A