【单选题】以下程序的运行结果是( )。 struct st {int n; float x; } * p; void main() {struct st arr[5]={{10,5.6},{12,7.1},{14,6.7},{16,6.2},{18,6.9}}; p=arr; printf("%d\n",++p->n); p++; printf("%d,%.2f\n",p->n,p->x);}
【单选题】int main(void) { double x,y,max,min; x=9.5; y=6.9; if(x>y) max=x; min=y; else max=y; min=x; cout< return 0; } 代码执行后的结果?