if ()
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 5 int main() 6 { 7 //if (x):若x非0,为true 8 if (0) 9 printf("0\n"); 10 if (1) 11 printf("1\n"); 12 if (-1) 13 printf("-1\n"); 14 return 0; 15 }
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 5 int main() 6 { 7 //if (x):若x非0,为true 8 if (0) 9 printf("0\n"); 10 if (1) 11 printf("1\n"); 12 if (-1) 13 printf("-1\n"); 14 return 0; 15 }