CAP/MiniC/TP04/tests/provided/step2/test_if2.c

20 lines
233 B
C
Raw Permalink Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
int main() {
if (10 == 10) {
println_int(12);
} else if (10 == 10) {
println_int(15);
} else {
println_int(13);
}
println_int(14);
return 0;
}
// EXPECTED
// 12
// 14