首页题库练习题目详情
C语言程序设计单选题中等

以下代码的执行结果是什么? if (1 == 1) { if (2 == 2) { printf("A"); } else { printf("B"); } } else { printf("C"); }

AA
BB
CC
D没有输出