<< endl; return 0; } int a = lua_tonumber(L, 1); //获取第一个参数,被减数 int b = lua_tonumber(L, 2); //获取第二个参数,减数 int diff = a - b; ...
確定! 回上一頁