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值程序错在哪了,答案能告诉我吗?非常急!!
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值程序错在哪了,答案能告诉我吗?非常急!!