河南成教 / C 语言程序设计
[程序题]
读下列程序,写出程序的运行结果。
#include
void fun(int x, int y);
int a=5, b=8;
int main( )
{
int a=15;
fun(a, b);
printf("a=%d, b=%d
", a, b);
}
void fun(int x, int y)
{
int temp;
if(a>b)
{
temp=a;
x=y;
y=temp;
}
}
输出:
[程序题]
读下列程序,写出程序的运行结果。
#include
void fun(int x, int y);
int a=5, b=8;
int main( )
{
int a=15;
fun(a, b);
printf("a=%d, b=%d
", a, b);
}
void fun(int x, int y)
{
int temp;
if(a>b)
{
temp=a;
x=y;
y=temp;
}
}
输出:
参考答案:
佳题速递: