case 1: count_profit(struct goods_type goods[20]);break;
-> case 1: count_profit(goods[20]);break;
调用函数的时候传递参数不要写类型
-> case 1: count_profit(goods[20]);break;
调用函数的时候传递参数不要写类型
未必钱多乐便多,财多累己招烦恼。 清贫乐道真自在,无牵无挂乐逍遥。
没加我试过了,它编译出来的结果还是有错误
error C2664: 'count_profit' : cannot convert parameter 1 from 'struct goods_type' to 'struct goods_type []'
好像是参数传递的时候出问题了