c#按位“或”运算符在带符号扩展操作数上使用;请考虑首先强制转换为较小的无符号类型int i = 0; int j = 0; while (i < ncolors) { int r = ((int) c[j++]) & 0xff; int g = ((int) c[j++]) & 0xff; int b = ((int) c[j++]) & 0xff;...