We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
int a=5,b; b = (++a)+(++a); System.out.println(b);
使用java验算了结果是13呀
The text was updated successfully, but these errors were encountered:
OC 的结果也是13,js的结果也是13 int a=5,b; b=(++a)+(++a); NSLog(@"%d", b);
Sorry, something went wrong.
C++的结果也是13 OC也是13 应该是搞错了 int a = 5,b; b = (++a) + (++a); cout<<b<<endl;
No branches or pull requests
使用java验算了结果是13呀
The text was updated successfully, but these errors were encountered: