”21天好习惯“第一期-16
今天又练习了一下条件语句和开关语句的结合,下面是具体的代码和运行结果;
#include<stdio.h>
#include<math.h>
int main()
{
int a,b,c;
double f,e;
printf("please enter a b:");
scanf("%d%d",&a,&b);
printf("please enter e:");
scanf("%lf",&e);
c=b*a+pow(a,b);
f=c*e+log10(b*e);
if(c==f)
{
switch(b)
{
case 1:
case 2:printf("%d",c);
case 3:printf("%d",f);
default :
printf("%f",c*f);
}
}
else
{
printf("run the progame agian");
}
return 0;
}