下面程序的输出结果是( )。 #include
using namespace std;
int main( )
{ int a=6,b=6;
if(a>5)
a-=1;
b+=1;
else
a+=1;
b-=1;
cout
A5 7
Ba=5 b=7
Ca=5 b=6
D编译时出错
相关试题
-
下面程序的输出结果是( )。 #include using namespace std; int main( ) { int a=6,b=6; if(a>5) a-=1
-
下面程序的输出结果是( ) #include using namespace std; void fun(int x,int y,int z) { z=x*x+y*y; } int mai
-
下面程序的输出结果是( ) #include using namespace std; int main( ) { int x=6,y=8; if(x++
-
下面程序的输出结果是( ) #include using namespace std; int main( ) { int a[10]={9,8,7,6,5,4,3,2,1,0},*p=
-
下列程序的运行结果是:( ) #include using namespace std; int main() { int a=2; int b=a+1; cout