猿问

求过程怎么算

#include<stdio.h>
void main()
{
	int a[4][4]={{1,2,3,4},{5,6,7,8},{11,12,13,14},{15,16,17,18}};
	int i=0,j=0,s=0;
	while(i++<4)
	{
		if(i==2||i==4)
			continue;
		j=0;
		do
		{
			s+=a[i][j];j++;}
		while(j<4);
	}
	printf("%d\n",s);
}


珊姐最伟大
浏览 1026回答 1
1回答
随时随地看视频慕课网APP
我要回答