C语言 用的VC6 这个代码可以运行 但是输出结果不对
#include<stdio.h>intmain(){doublea,b;intc;scanf("%lf%lf",&a,&b);c=(a-b)/b*100;if(a<b*...
#include <stdio.h>
int main()
{
double a,b;
int c;
scanf("%lf%lf",&a,&b);
c=(a-b)/b*100;
if (a<b*1.1)
printf("OK\n");
else if (a>=b*1.1)
printf("Exceed %d%%. Ticket 200\n",c);
else if (a>=b*1.5)
printf("Exceed %d%%. License Revoked\n",c);
return 0;
} 展开
int main()
{
double a,b;
int c;
scanf("%lf%lf",&a,&b);
c=(a-b)/b*100;
if (a<b*1.1)
printf("OK\n");
else if (a>=b*1.1)
printf("Exceed %d%%. Ticket 200\n",c);
else if (a>=b*1.5)
printf("Exceed %d%%. License Revoked\n",c);
return 0;
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |