晕死,用C就能编出来了啊。。
#include <stdio.h>
void main()
{
float a,b,A;
char ch;
printf("please enter the integer:a");
printf("please enter the type:(+,-,*,/)");
printf("please enter the integer:b");
scanf("%f%c%f",&a,&ch,&b);
if (ch=='+') {A=a+b;}
if (ch=='-') {A=a-b;}
if (ch=='*') {A=a*b;}
if (ch=='/') {A=a/b;}
printf("%f,%c,%f,A=%.2f",a,ch,b,A);
}
自己试试看。