实数/整数,
#include<stdio.h>
int main()
{
float a, c ;
int b;
printf("请输入一个实数和一个整数:\n");
scanf("%f%d",a,b);
c=a/b;
printf("输出%.3f",c);
return 0;
}
双精度实数