下面程序的输出结果为( )
#include
using namespace std;
func (int a,int b)
{ int c;
c=a*b;
return (c );
}
int main( )
{int x=6,y=7,z=8,r;
r=func(--x*y,z--);
cout
A294
B245
C280
D416
相关试题
-
下面程序的输出结果为( ) #include using namespace std; func (int a,int b) { int c; c=a*b; return (c
-
下面程序的输出结果为( ) #include using namespace std; unsigned func(unsigned num) { unsigned d=1,k; d
-
下面程序的输出结果是( ) #include using namespace std; int fun(int a,int b) { return (++a*b++); } int m
-
下面代码的输出结果为 int func(int x) { int countx =0; while(x) { countx ++; x = x&(x-1); } r
-
下面程序的输出结果是( ) #include using namespace std; void fun(int x,int y,int z) { z=x*x+y*y; } int mai