给我出一道c++的简单改错题
时间: 2024-03-05 15:54:58 浏览: 93
超全面的c++题库
4星 · 用户满意度95%
好的,这是一道简单的 C++ 改错题:
```c++
#include<iostream>
using namespace std;
int main()
{
int a=10, b=5;
if (a > b)
{
cout << "a is greater than b" << endl;
}
else
{
cout << "b is greater than a" << endl;
}
return 0;
}
```
请找出其中的错误并进行修改。
阅读全文