16,548
社区成员




// test_app.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
int main(int argc, char* argv[])
{
int iVal = 0;
if( (iVal += 3) > 4 )
{
}
printf("iVal=%d\n",iVal);
return 0;
}