0分:先写个乘法表然后改 20分:这题不是乘法表,是乘方 70分:手写pow函数,cmath库的pow会有精度问题,给个例子
int pow(int a,int b){ int ans=a; for(int i=2;i<=b;i++){ ans*=a; } return ans; }