磊之茶 发表于 2020-3-24 19:31:58

请问这是为什么?

#include<iostream>
using namespace std;
int main()
{
        cout<<"abcdefghijklmnopqrstubwsyz"<<"123456"<<endl;
        cout<<"dadnm"<<endl;
        return 0;
}
然后报错了
错误原因:
ld returned 1 exit status
#include<iostream>
using namespace std;
int main()
{
        cout<<"abcdefghijklmnopqrstubwsyz"<<endl;
        cout<<"dadnm"<<endl;
        return 0;
}
这个也是

一个账号 发表于 2020-3-24 19:32:50

你之前运行的没有退出

sunrise085 发表于 2020-3-24 19:38:23

这段程序没有任何问题。
应该是有程序在运行, 没有退出。

磊之茶 发表于 2020-3-24 19:40:03

请问如何解决

人造人 发表于 2020-3-24 20:05:32

磊之茶 发表于 2020-3-24 19:40
请问如何解决

重启
页: [1]
查看完整版本: 请问这是为什么?