#include<stdio.h> void main() {int i,j,x=0; int a[6]={2,3,4}; for(i=0,j=1;i<3&&j<4;i++,j++) x+=a[i]*a[j]; printf("%d\n",x); } 第一次算x,是拿i=0,j=1算的吗?