#include "stdio.h" main() { int x,y,z; x=1;y=2;z=3; if(x>y) if(x>z) printf("%d",x); else printf("%d",y); printf("%d\n",z); } 此程序的输出结果:输出 3