25 条题解

  • 0
    @ 2025-3-16 18:19:04
    #include <stdio.h>
    #include <iostream>
    using namespace std;
    int main()
    {
    	int n;
    	cin >> n;
    	int a,b,c;
    	c = n % 10;
    	a = n / 100;
    	b = n / 10 % 10;
    	cout << c << b << a << endl;
    }
    

    信息

    ID
    837
    时间
    1000ms
    内存
    128MiB
    难度
    5
    标签
    递交数
    1825
    已通过
    698
    上传者