摘要:
#include <stdio.h>#include <ctype.h>#include <stdlib.h>int result(int a,char b,int c){ int i; switch (b) { case '+': i=(a+c); break; case '-': i=(a-c); break; case '*': i=(a*c); brea... 阅读全文
posted @ 2010-06-15 14:49
c++我们一起学习
阅读(140)
评论(0)
推荐(0)