关于珍惜生命的说说:关于vc++

来源:百度文库 编辑:高考问答 时间:2024/05/10 11:58:08
#include<iostream.h>
void main()
{
#define s(x) x*x
int z=5;
cout<<s(z+2)<<endl;
}
计算过程是怎样的??

s(z+2) 等于 z+2 * z+2 = 3z+2