全部评论 4

  • 我发到题解了

    2023-07-13 来自 四川

    0
  • int a[10001];
    int now;
    int main()
    {
    int n;
    cin>>n;
    for(int i=31;i>=0;i--)
    {
    cout<<((n>>i)&1);
    }
    return 0;
    }

    2023-07-13 来自 四川

    0
  • #include<iostream>
    #include<cstdio>
    using namespace std;

    2023-07-13 来自 四川

    0
  • 暂时看不出你哪里错了,可以借鉴下面这代码

    2023-07-13 来自 四川

    0

热门讨论