//6.15
int main()
{
int x, y;
for (x = 1;x <= 98;x++)
{
y = 98 - x;
if (x == (193 - 2 * y))
{
printf("%d\n%d", x, y);
break;
}
}
return 0;
}
微信扫一扫
//6.15
int main()
{
int x, y;
for (x = 1;x <= 98;x++)
{
y = 98 - x;
if (x == (193 - 2 * y))
{
printf("%d\n%d", x, y);
break;
}
}
return 0;
}
相关推荐