尝试编译时出现标题错误。
#include <iostream>
using namespace std;
int chance()
{
return rand()%11;
}
int main()
{
if (chance > 5)
cout << "You win." << endl;
else
cout << "You lose." << endl;
return 0;
}
这是我的完整代码,我试图输出50至50
最佳答案
您正在将function pointer
与integer(5)
进行比较,我想您想调用chance()
函数,请尝试
if (chance() > 5)
^^