//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;
 }
C语言程序设计苏小红课后习题答案6.15
阅读 69
2022-03-22
//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;
 }
相关推荐
精彩评论(0)