10 条题解

  • 2
    @ 2024-11-20 13:20:44

    #include<bits/stdc++.h> using namespace std; int main() { int a,b,c,x; for(x=10;x<=100;x++) { a=x/10; b=x%10; c=10*b+a; if((c-x)==36) { cout<<x<<endl; } } return 0; }

    信息

    ID
    47
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    223
    已通过
    94
    上传者