">以下程序运行后的输出结果是#include
int main()
{
int a;
int c=10;
float f=100.0;
double x;
a=f/=c*=(x=6.5);
printf("%d,%d,%3.1f,%3.1f\n",a,c,f,x);
return 0;
}