第四课。

This commit is contained in:
unlockable
2022-10-07 12:29:08 +08:00
parent aedf18a247
commit c3608c3f89
4 changed files with 47 additions and 0 deletions

6
04/Exercise02.c Normal file
View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
int result, x;
printf("%d", (5 > 3 && 2 || 8 < 4 - !0));
return 0;
}