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
例如:
USTC_CG_24/Homeworks/0_cpp_warmup/project/src/libraries/shared/PolynomialList.cpp Lines 21 to 30 in 84f5a42 double PolynomialList::coff(int i) const { // TODO return 0.; // you should return a correct value } double& PolynomialList::coff(int i) { // TODO static double ERROR; // you should delete this line return ERROR; // you should return a correct value } 参数的含义是什么?
USTC_CG_24/Homeworks/0_cpp_warmup/project/src/libraries/shared/PolynomialList.cpp
Lines 21 to 30 in 84f5a42
USTC_CG_24/Homeworks/0_cpp_warmup/project/src/libraries/shared/PolynomialList.cpp Lines 65 to 69 in 84f5a42 PolynomialList::Term& PolynomialList::AddOneTerm(const Term& term) { // TODO static Term ERROR; // you should delete this line return ERROR; // you should return a correct value } 返回值的含义是什么?
Lines 65 to 69 in 84f5a42
虽然大概猜出来,不过个人觉得应该再明确一点(
The text was updated successfully, but these errors were encountered:
No branches or pull requests
例如:
虽然大概猜出来,不过个人觉得应该再明确一点(
The text was updated successfully, but these errors were encountered: