注意:此页面搜索的是所有试题
[分析题,5分]
阅读下列程序,将输出结果写到各题右侧的空白处
void main()
{
  float x=3.6;
  int i;
  i=x;
  printf("x=%5.3f, i=%d\n",x,i);
}

参考答案