全部评论 12

  • 可能是因为你跑酷踩到了黄色,嗯,对

    2025-10-09 来自 北京

    1
  • 可能是把C++代码交到其它语言里了,嗯,应该是这样

    2025-11-15 来自 新疆

    0
  • 可能爆内存了

    #include<bits/stdc++.h>//问题1
    #define int long long//问题2
    using namespace std;
    signed main()//问题3
    {
        string s;cin>>s;
        if(s=="无")cout<<"Hello,World!";
        return 0;
    }
    

    因改为

    #include<iostream>
    using namespace std;
    int main(){
        string s;
        cin>>s;
        if(s=="无")cout<<"Hello,World!";
        return 0;
    }
    

    2025-11-09 来自 广东

    0
  • 666666666666666

    2025-10-21 来自 山东

    0
  • #include<bits/stdc++.h>
    #define int long long
    using namespace std;
    signed main()
    {
        cout<<"Hello,World!";
        return 0;
    }
    

    2025-10-18 来自 福建

    0
  • 偶遇天赋型选手,拼尽全力无法战胜

    2025-10-18 来自 广东

    0
  • 我真的求你了

    2025-10-18 来自 广东

    0
  • 我觉得应该复制题目输出,顺便把没用的

    #define int long long
    

    给删掉

    2025-10-11 来自 江西

    0
  • O邀请码是多少?

    2025-10-10 来自 浙江

    0
  • 要用 wchar

    2025-10-10 来自 浙江

    0
  • 可能字符编码不对吧

    2025-10-09 来自 广东

    0
  • d

    2025-10-09 来自 江苏

    0

热门讨论