void main(){ int x,y; int t; for(x=-41;x<=41;x++) for(y=-41;y<=41;y++) if (x*x+y*y=41*41) {t=x+y; printf("%d\n",t); } getch();}滿足x*x+y*y=41*41,且x+y最小時的x+y值程序錯在哪了,答案能告訴我嗎?非常急!!