VC6.0 c++ 编写一个程序用一个十六进制数对整型变量a赋值,按十进制数出a

2024年11月15日 10:39
有1个网友回答
网友(1):

int main()
{
int i=0x10;
printf("%d",i);
return 0;
}