编辑代码

#include <stdio.h>
int main () {
    int a,b,c;
    scanf("%d%d",&a,&b);
    c=a/b;
    printf("结果%d",c);
    printf("%.2lf\n",c);
	return 0;
}