运行 ❯
获取自己
的
网站
×
更改方向
更改主题,深色/浅色
转至 Spaces
#include <stdio.h> int main() { int x = 5; int y = 3; // Returns 0 (false) because 5 is neither less than or equal to 3 printf("%d", x <= y); return 0; }
0