单项选择题
(4). 某保险公司多年的统计资料表明,每一年索赔户中被盗索赔户占10%。设
表示今年的50个索赔户中的被盗索赔户户数,则
等于( )。
热门
试题
问答题
若有以下程序 : #include void swapv(int a, int b){ int temp; temp=a; a=b; b=temp;} void swapp(int &a, int &b){ int temp; temp=a; a=b; b=temp;} int main(){ int x=-1,y=3; swapv(x,y); printf( x=%d,y=%d; ,x,y); swapp(x,y); printf( x=%d,y=%d. ,x,y); return 0; } 则程序运行后的输出为:_____________________________。