12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- int main()
- {
- int a = 0;
- int b = 0;
- if (a > b)
- return 1;
- if (a < b)
- return 2;
- if (a != b)
- return 3;
- int c = 7;
- int d = 7;
- if (c > d)
- return 4;
- if (c < d)
- return 5;
- if (c != d)
- return 6;
- int x = 3;
- int y = 5;
- if (x == y)
- return 7;
- if (x >= y)
- return 8;
- if (y <= x)
- return 9;
- if (x > y)
- return 10;
- if (y < x)
- return 11;
- return 99;
- }
- void interrupt()
- {
- }
|