填空题
以下程序运行后输出结果是
【18】
。
#include <stdio, h>
void swap(int x.int y)
int t;
t = x;x = y;y = t: printf( "% d % d ",x,y);main ( )
iht a=3,b=4:
swap(a,b); prinff( "% d % d" ,a,b);
【参考答案】
433 4
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
以下程序运行后的输出结果是 【19】 。#include <stdio, h>main( ) char c1 ,c2; for( el =’ 0’, c2 =’9’; e1<c2; c1 + + , c2 -- ) printf( %c%c , c1, c2 ); printf( n );
点击查看答案&解析
填空题
有下面的程序:#include <stdio, h>main ( ) enum team my,your=4,his,her=his+10; prinff( % d %d %d %d n ,my,your,his,her);此程序的输出结果是 【15】 。A) 0 1 2 3B) 0 4 0 1 0C) 0 4 5 1 5D) 1 4 5 1 5
点击查看答案&解析
相关试题
以下程序运行后的输出结果是 【17】 。...
以下程序中,fun函数的功能是求3行4列二...