GNU nano 4.8 hanshu.cpp #include <iostream> using namespace std; void cheers(int n); int main(void) { cheers(5); return 0; } void cheers(int n);{}
时间: 2024-02-14 15:08:52 浏览: 132
nano-4.8.tar.gz
5星 · 资源好评率100%
这段代码是有问题的,因为 `void cheers(int n);{}` 函数定义不完整,应该在函数体内添加代码实现函数的功能。正确的代码应该是这样的:
```c++
#include <iostream>
using namespace std;
void cheers(int n);
int main(void) {
cheers(5);
return 0;
}
void cheers(int n) {
for(int i=0; i<n; i++) {
cout << "Cheers!" << endl;
}
}
```
这样就可以输出 "Cheers!" 5 次了。
阅读全文