注册 登录
编程论坛 C++ Builder

新手小白求助下,不知道错哪了

wl0421 发布于 2022-07-31 19:34, 1678 次点击
随机生成5道10以内的加法题目,错误提示是: error: ‘end1’ was not declared in this scope
具体代码如下

#include<iostream>
#include<ctime>
#include<stdlib.h>
using namespace std;
int main()
{
    srand(time(0));
    cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
    cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
    cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
    cout<<rand()%10<<"+"<<rand()%10<<"="<<end1;
    return 0;
}
4 回复
#2
md000000002022-08-09 23:58
因为你将endl打成end1了

最后一个字母是小写的L不是数字1

只有本站会员才能查看附件,请 登录
#3
mature1192022-09-03 19:56
数字1.。。。。

#4
aqwq2022-09-30 21:43
是小写l不是1
#5
chenjiale2502023-01-10 18:34
endl最后一个字母是l不是1
1