cout<<oct<<x<<endl;
cout<<dec<<x<<endl;
cout<<hex<<x<<endl;
cout<<boolalpha<<y<<endl;
cout<<dec<<x<<endl;
cout<<hex<<x<<endl;
cout<<boolalpha<<y<<endl;
2015-09-23
cout<<x<<endl;
cout<<"x+y="<<x+y<<endl;
cin>>x;
cin>>x>>y;
cout<<"x+y="<<x+y<<endl;
cin>>x;
cin>>x>>y;
2015-09-23
已采纳回答 / onemoo
getMaxOrMin函数的第一个参数arr是int指针,并不是数组(其实是一样的,见回复的最后一段)。将参数声明为int数组要这样写 int arr[]。 (如果写成 int *arr[] 的话,是声明了一个int指针的数组)你是不是说:另有一个数组,假设为 int a[3];调用函数时是这样传参的: getMaxOrMin(a, ...) ? 为什么声明第一个参数为指针,却传入了一个数组名??这样传参数是正确的。如之前所说:数组在作右值时会自动转换为指向其首元素的指针。用数组名传参数就是把数组作为右...
2015-09-22