#if 的问题_C/C++_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > C/C++ > #if 的问题

#if 的问题

 2012/2/6 9:30:44  solu  程序员俱乐部  我要评论(0)
  • 摘要:#include<iostream>usingnamespacestd;intmain(){inta=19;intb=21;#ifa>=bintL=a;#elseintL=b;#endifcout<<"L:"<<L<<endl;return0;}请问一下这段代码为什么输出为19?
  • 标签:问题
#include <iostream>
using namespace std;  

int main()
{
	int a =19 ; 
	int b = 21;
	
	#if a >= b
		int L = a ; 
	#else
		int L = b ; 
	#endif

	cout<<"L: "<<L<<endl;
	return 0;
}


请问一下这段代码为什么输出为19 ?
发表评论
用户名: 匿名