标签:方法 res 乘法 数据 type 返回 除法 运算 ++
乘法:
int tmp=a;
for(int i=1;i<b;i++)
tmp+=a;
res=tmp;
除法:
int tmp=0;
for(;a>b;a-=b)
tmp++;
res=tmp;
标签:方法 res 乘法 数据 type 返回 除法 运算 ++
原文地址:https://www.cnblogs.com/wang-130213/p/9132411.html