c语言填运算符,请写出可运行程序。
c语言填运算符,请写出可运行程序。
日期:2016-07-07 03:55:04 人气:1
这个需要使用函数指针来实现,我为了给你调试程序,写了好几分钟的代码,已经调试通过。
#include "stdafx.h"
#include
int Cal1(int a,int b)
{
return a+b;
}
int Cal2(int a,int b)
{
return a - b;
}
int Cal3(int a,int b)
{
return a *b;
}
int Cal4(int a,int b)
{
return a / b;
}
int