#include <stdio.h> int main() { int num1=-10; unsigned int num2=10; if(num1>num2) printf("AAA "); else printf("BBB "); return 0; }
运行结果:AAA