1 条题解

  • 0
    @ 2022-10-15 22:58:40
    #include<iostream>
    using namespace std;
    int main()
    {
    	int n;
    	cin >> n;
    	cout << n / 100 << endl;
    	cout << n % 100 / 10 << endl;
    	cout << n % 100 % 10<< endl;
    	return 0; 
    }
    
    • 1

    信息

    ID
    6
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    递交数
    195
    已通过
    103
    上传者