可能重复:
C 扩展名:<? 和>?运营商
我在破译一些 C++ 代码时遇到了麻烦,并且无法通过搜索找到任何东西。任何人都可以使用“<”帮助我使用下面的代码吗?符号?
int maximumLength(int countA, int countB, int maxA, int maxB) {
long long ca=countA,cb=countB,ma=maxA,mb=maxB;
if(ma==0) ca=0;
if(mb==0) cb=0;
long long res=ca+cb;
// any help on the below two lines is appreciated!
res<?=(cb+1)*ma+cb;
res<?=(ca+1)*mb+ca;
return (int)(res);
}