#include<stdio.h> #define Num 40 int main() { int a = 20; if(a < Num) if (a > 20) printf("123!"); else printf("456!"); return 0; }
问:这段代码将会打印什么?
456!