填空题
父亲说:今年哥哥年龄的平方加上弟弟的年龄,等于1119;弟弟年龄的平方加上哥哥的年龄,等于933;他们现在的年龄都不超过35岁。下面程序的功能是计算哥哥和弟弟的年龄,请把程序补充完整。
#include<stdio.h>
int main()
{
int i, j;
for(i=1; i<=35; i++)
{
j=
1;
if(
2)
break;
}
printf("The old brother"s age is: %d/n", i);
printf("The young brother"s age is: %d/n", j);
return 0;
}