rules.c 217 B

1234567891011
  1. /* rules.c -- precedence test */
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. int top, score;
  6. top = score = -(2 + 5) * 6 + (4 + 3 * (2 + 3));
  7. printf("top = %d, score = %d\n", top, score);
  8. return 0;
  9. }