编辑代码

#include<stdio.h>
int main()
{
int a=200,b=120;
float c;
c=(a-b)*1.0/b*100;
printf("%f%%",c);
return 0;
}