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
在提示2-3下面的那段正文中,原文表述为“变量i定义在循环语句中,因此i在循环体内不可见 这段正文指的代码是 for(int i=1;i<=n;i++) printf("%d\n",i; 循环体内i应当是可见的
for(int i=1;i<=n;i++) printf("%d\n",i;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在提示2-3下面的那段正文中,原文表述为“变量i定义在循环语句中,因此i在循环体内不可见
这段正文指的代码是
for(int i=1;i<=n;i++) printf("%d\n",i;
循环体内i应当是可见的
The text was updated successfully, but these errors were encountered: