实例 C 语言if 语句

x
 
#include <stdio.h>
int main() {
  if (20 > 18) {
    printf("20 is greater than 18");
  }  
  return 0;
}
                    

输出结果

20 is greater than 18