下面程序的输出结果是( )
#include
using namespace std;
void fun(int x,int y,int z)
{ z=x*x+y*y; }
int main( )
{ int z=68;
fun(5,2,z);
cout
A0
B29
C68
D无定值
相关试题
-
下面程序的输出结果是( ) #include using namespace std; void fun(int x,int y,int z) { z=x*x+y*y; } int mai
-
下面程序的输出结果是( ) #include using namespace std; int fun(int a,int b) { return (++a*b++); } int m
-
下列程序的运行结果是:( ) #include using namespace std; int main() { int a=2; int b=a+1; cout
-
下面程序的输出结果是( ) #include using namespace std; f(int a) { int b=0; static int c=3; b++;c++;
-
有以下程序 #include int i = 0; void fun() { { static int i = 1; std::cout