设计一个四则运算的程序代码
摘要:
#include <stdio.h> float Math(char c,float a,float b) { switch(c) { case '+':return(a+b);break; case '-':return(a-b);break; case '*':return(a*b);break 阅读全文
posted @ 2016-03-12 17:21 782327320 阅读(509) 评论(1) 推荐(0) 编辑