下面程序的结果为_____。 #include<iostream.h> void main( ) { int a=1,b=2; bool c=1; if((a>b) | | c) cout < < "tree" < <

admin2013-05-30  30

问题 下面程序的结果为_____。
   #include<iostream.h>
   void main( )
   {
   int a=1,b=2;
   bool c=1;
   if((a>b) | | c) cout < < "tree" < < endl;
   else
            cout < < "false" < < endl;
   }

选项

答案true

解析 本题考查的是对于逻辑运算符号的理解,“ || ”运算符的任何一边取值为真,则整个运算结果为真。
转载请注明原文地址:https://kaotiyun.com/show/P9Np777K
0

最新回复(0)