int main(){
int x;
cout<<"enter a number: ";
cin>>x;
cout<<endl;
odd(x);
return 0;
}
void odd(int a){
if(a%2 != 0){
cout<<"the number is odd : "<< '(' +a+ ')';
}else{
even(a);
}
}
我执行了上面的程序,得到了不同的输出:
enter a number: 15
the number is odd : 96
为什么会这样?
由于
答案 0 :(得分:12)
试试这个:cout<<"the number is odd : "<< '('<< a << ')';
“(”和“)”具有值40和41.它们被提升为int并添加它们,这就是为什么输出为96(40 + 15 + 41 == 96)。