#P1. MyMinus
MyMinus
Background
函数题测试
Description
实现给定的MyMinus函数
Format
在下列代码上修改后提交
#include "tools.h" //包含我们提供好的头文件,里面已经实现了主函数
//你要实现的是my_minus函数体
int my_minus(int a, int b){
int c = 0;
// 这里写你的代码,让c等于a-b
return c;
}
函数题测试
实现给定的MyMinus函数
在下列代码上修改后提交
#include "tools.h" //包含我们提供好的头文件,里面已经实现了主函数
//你要实现的是my_minus函数体
int my_minus(int a, int b){
int c = 0;
// 这里写你的代码,让c等于a-b
return c;
}