怎么进行循环算法
#include <stdio.h>int main(void)
{
char fs ;
float a, b, c;
printf("you:");
scanf("%e %c %e",&a,&fs,&b);
switch(fs)
{
case '+':
c = (int)a+b;
printf("=%.1e\n",c);
goto a;
break;
case '-':
c= a-b;
printf("%.1e",c);
break;
case '*':
printf("%.1e",c=a*b);
break;
case '/':
c=a*b;
printf("%.1e",c);
break;
case '%':
int a,b;
c= a%b;
printf("%.1e",c);
default:
printf("You entered incorrectly");
}
{
a:
float k;
scanf("%e",&k);
k=c+k;
printf("%.1e",k);
}
return 0;
}
我输入1+1=2
输出是2
再输入3
是2+3=5
但是能不能把运算如此下去,每次输入不同的数加相,还有能把运算符也手动输入那更好,求教,我小白
再把2+