#if 的问题
#include <iostream>using namespace std; int main(){int a =19 ; int b = 21;#if a >= bint L = a ; #elseint L = b ; #endifcout<<"L: "<<L<<endl;return 0;}