2 条题解

  • 0
    @ 2025-5-1 22:23:18
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        cout<<54987;
        return 0;
    }
    
    • 0
      @ 2024-12-24 9:49:25

      C++ :

      #include<stdio.h>
      
      int main()
      {
      	int a,b,c,d,e,f,g;
      	scanf("%d",&a);
      	b=a/10000;
      	c=a/1000%10;
      	d=a/100%10;
      	e=a/10%10;
      	f=a%10;
      	g=f*10000+e*1000+d*100+c*10+b;
      	printf("%d",g);
      	return 0;
      }
      
      • 1

      信息

      ID
      917
      时间
      1000ms
      内存
      128MiB
      难度
      10
      标签
      递交数
      2
      已通过
      1
      上传者