#include <stdio.h>int function(int a, int b, int c){ int d = 0; if(a < 0) ++d; if(b < 0) ++d; if(c < 0) ++d; return d;}int main(void) { if(function(1,-1,-2) == 2){ printf("two\n"); } return 0;} 不过这个写法最秀~